i have a scenario where i have a checkboxmodel grid on left and a simple grid model on the right.
as i check the row in the checkboxmodel i have to add the selected row to the right grid.
Both of the grid uses the same model.
Ext.define('com.gm.vl.model.YMMModel', {
extend: 'Ext.data.Model',
fields: ['label','value']
});
but as above code as i add the data it is getting added in the store. but is not visible on the screen.
i also did the refresh of grid view as above.