How To Select A Specific Record From The Store In A Combobox (extjs)
I have a ComboBox with a remote json store. It lets the user type in 3+ characters, then queries, displays list and lets user select one option. When the user selects an option, it
Solution 1:
did you try combo.fireEvent('click', combo, record, index)
?
Solution 2:
How about this:
record = this.store.getAt(1);
Post a Comment for "How To Select A Specific Record From The Store In A Combobox (extjs)"