here is my code
{
xtype: 'combobox',
minChars: 3,
anchor: '100%',
fieldLabel: 'Type',
name: 'typeName',
typeAhead: true,
mode: 'remote',
emptyText: 'Select Type',
valueField: 'id',
bind: {
store: '{type}'
}
},
so I have combobox whos store is autoLoad:true, but when i click on the combobox button, it resend the request to server. i dont want that , i want to send the request to server only when someone type something in it.