Hi all
I am trying to populate dynamically a grid panel. I.e no model with static definition of fields is used. The grid columns are created on the fly and the grid should be filled extracting from JSON response from the server those parameters matching the column names. But nothing but the column names appers on the grid.
The code fragment supposed to populate the grid is:
// reset manager store
mgr_grid=Ext.ComponentQuery.query('managergrid')[0];
store=mgr_grid.getStore();
store.loadData([],false);