-
20 May 2008 10:28 PM #1
Refresh grid at startup
Refresh grid at startup
Hello,
i have a grid in a window in a tab.
When i activate the tab i can see the window with the grid inside. But no data.
When i press the refresh button of teh grid the data is displayed.
How can i display the data when i activate the tab?
BR
Spiff1
-
20 May 2008 10:34 PM #2
Something like:
Code:myTabs.on('activate', function(panel) { if (panel is your gridpanel, or contains your grid) panel.getStore().load(); //or other appropriate store load method. } );


Reply With Quote