jQuery combobox with nested option values?
I'm trying to create a combobox with a set of nested option values, using flyouts for the sub-values.
jQuery UI Autocomplete
seems to be the way to go for a flat list of options, but how c开发者_高级运维an I use it with nested options?
If there's a better plugin to use, I'm open to it.
As far as I can see, this plugin actually renders a select tag on the page, which itself does not support nesting, only optgroups. If you want nested elements inside of the combobox, you would have to use another plugin or component.
精彩评论