The answer is:
{
xtype: 'button',
text:'Search',
handler:function(){
store.clearFilter();
var searchValue = Ext.getCmp("textFieldId").getValue();
Type: Posts; User: Ingol
The answer is:
{
xtype: 'button',
text:'Search',
handler:function(){
store.clearFilter();
var searchValue = Ext.getCmp("textFieldId").getValue();
Ok, so ,
handler:function(){
var me = Ext.getCmp("textFieldNaziv").getValue();
myStore.filter('naziv', me);
}
only filters data that has already been displayed to grid, but how to...
This works, but only once, second time i click button, no result? Also, works only if autoLoad:true, but if this set to false, no result at all, pleeass hellp!:-/
xtype: 'button',
...
Hi,
I am pretty new to ExtJS but Im loving It =D>,
How to take value from input field and then filter it through JSON, and then show results in a grid , not before filtering? IS it possible, on...