If I write 2 chars in the combo appears the filtered list and it works, but
If I select anything and I click in the combo and I write other chars the list doesn't appears.
If I watch the console of Firefox 12.0 there are the query... it's very strange!
This is my code:
Code:
Ext.getCmp('myGrid').columns[0].editor= {
xtype: 'combo',
store: myStore,
displayField:'valore',
valueField: 'codice',
queryParam: 'valore',
mode: 'remote',
triggerAction: 'all',
editable: true,
typeAhead: false,
minChars: 1,
matchFieldWidth: false,
allowBlank: false,
hideTrigger:true,
pageSize:10,
forceSelection: true,
listeners: {
beforequery: function(queryEvent){
if (!queryEvent.query)
return false;
}
},
listConfig: {
width: 300,
heigth: 200,
loadMask: false,
emptyText: 'Nessun record trovato'
}
};