Are there any known issues with the 'select' event on the a3r4 combo box?
I've got a function associated wiht 'select' that fires when I select an element from the drop-down, but doesn't when I programatically select items, for example, I have to use the following code to ensure that things like the selectedIndex are correctly set-up:
To select an element
am I just going bonkers ?
I've got a function associated wiht 'select' that fires when I select an element from the drop-down, but doesn't when I programatically select items, for example, I have to use the following code to ensure that things like the selectedIndex are correctly set-up:
combo.setValue('my-value'); combo.selectNext(); this.selectionChanged(combo, combo.store.getAt(0), 0 );

