In Extjs store can we query with 2 columns and 2 values?
You can use queryBy method
store.queryBy(function(record,id){
return (record.get('oneField') == someValue && record.get('secondField') == otherValue);
});
You can use queryBy method
store.queryBy(function(record,id){
return (record.get('oneField') == someValue && record.get('secondField') == otherValue);
});