Rank: Advanced Member Groups: Member
Joined: 6/17/2010 Posts: 35
|
Is there a way to add or delete items from the listbox via javascript and then recreate the ListBox or is this only possible at PageLoad via code-behind? In the javascript reference for the ListBox Object or the ListBoxItem Object I did not find anything about it. Typical methods such as addItem, deleteItem, addOption, or deleteOption are obviously not supported.
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,217
|
Unfortunately no, this is not supported. The closest you can have is load on demand, but even that would still go back to the server to load additional items. Sorry about it!
|
Rank: Advanced Member Groups: Member
Joined: 6/17/2010 Posts: 35
|
Thanks for the feedback. In the meantime I was able to implement my ideas with the asp Object <asp:ListBox> instead of <eo:ListBox>.
|