Bootstrap-select: Live search For optgroups

Created on 14 Feb 2017  路  4Comments  路  Source: snapappointments/bootstrap-select

I'll be happy if could search the optgroups

enhancement

Most helpful comment

If by live search optgroups, you mean typing in part of the optgroups value for it to find all options in said optgroup, then you can sort of do it.

I did it by adding the value of an optgroup as a data-tokens to each of the option in the optgroup.

[edit]

example:

<optgroup label="Food">
    <option data-tokens="food green">Iceberg</option>
    <option data-tokens="food green">Cucumber</option>
    <option data-tokens="food red">Tomato</option>
    <option data-tokens="food orange">Carrot</option>
</optgroup>

then it should find all the options in that group if you live search for "food"

All 4 comments

If by live search optgroups, you mean typing in part of the optgroups value for it to find all options in said optgroup, then you can sort of do it.

I did it by adding the value of an optgroup as a data-tokens to each of the option in the optgroup.

[edit]

example:

<optgroup label="Food">
    <option data-tokens="food green">Iceberg</option>
    <option data-tokens="food green">Cucumber</option>
    <option data-tokens="food red">Tomato</option>
    <option data-tokens="food orange">Carrot</option>
</optgroup>

then it should find all the options in that group if you live search for "food"

I have tried it in that way actually, but it doesn't work. I don't know the reason. And now, the data-tokens doesn't work perfectly, maybe it's affectted by other js framework.

Works for me. Thx!

As I need to use long names in my selectlist items (and optgroups) this solution doesn't really work for me. Including the group names in the live-search would be awesome...

Was this page helpful?
0 / 5 - 0 ratings

Related issues

AndreasPresthammer picture AndreasPresthammer  路  3Comments

james-yun picture james-yun  路  3Comments

anton164 picture anton164  路  4Comments

dacavcosta picture dacavcosta  路  3Comments

Khrysller picture Khrysller  路  3Comments