Thanks for the reply. I tried your suggestion, but it didn't seem to change the behavior -- I click once to show the dropdown, then need to click a second time to expand the dropdown list. I'm using the IconCombo class too. Would there be any issues with this?
The following is what I have:
Code:
editor: new Ext.grid.GridEditor(
...
new Ext.ux.IconCombo({
forceSelection: true,
triggerAction: 'all',
lazyRender: true,
mode: 'local',
editable: false
...
}),
{
listeners: { startedit: function(){ this.field.expand(); } }
}
)