Implement Multi Column Combo Box Using Html + Javascript
I am looking a multi columns combo box by using HTML + JavaScript only. Is there any example or library available? As I came across some solution, they are in ASP.NET, but not pure
Solution 1:
If jQuery is an option, here's a plugin that looks like it can deliver this:
Solution 2:
Flexbox is probably the best one I have ever used with jQuery, with paging and JSON support :
It's a real combo box, as it displays the results by typing. It can be easily restyled through the CSS.
Eg. to modify the rows :
.ffb.content.row {
border-bottom: 1px solid #828790;
clear: both;
color: #000000;
height: 20px;
}
border-bottom
may be removed to get rid of lines between rows.
Solution 3:
http://dev.sencha.com/deploy/dev/examples/form/combos.html Shows ExtJS's combo box. Their combo box can be customized with template to be used for rendering each entry. All you'd need to do is to specify a template that contains a few spans with a set width.
If you're willing to use ExtJS (not free), write it in here, and I'll show you an example
Post a Comment for "Implement Multi Column Combo Box Using Html + Javascript"