Hi all... i have something wrong here or something else... but this combo has the store loaded, it's rendered on page but I cant select anything on IE (FF works fine)
Code:
var SubCategoria = new Ext.form.ComboBox({
id: 'SubCategoria',
name: 'SubCategoria',
store: dsSubCategoria,
allowBlank: false,
minChars: 0,
typeAhead: true,
hiddenName: 'subcategoria',
displayField: 'sub_cat_nom',
valueField: 'sub_cat_id',
loadingText: 'Cargando...',
emptyText: 'Seleccione...',
forceSelection: true,
editable: false,
blankText: 'Debe seleccionar una categoria',
fieldLabel :'Categoria',
triggerAction: 'all',
mode: 'local',
selectOnFocus: true
});
Thanks for reading!