-
GridPanel deselect
Hi.
When I click on a row in my GridPanel I pop up a Window containing a FormPanel with data. This is OK so far. When I close the Window the GridPanel row remains selected.
I would like the row to be deselected when I close the popup Window (actually I hide the window on close).
I have attached the following to the Window but with no success : screen just hangs : Firebug seems lost somewhere in ext-all.js :
listeners:
{beforehide: function(){
Ext.getCmp("grid_name").getSelectionModel().clearSelections();
return true;
}},
Any ideas on this please ?
-
Use ext-all-debug.js and put a breakpoint at the "...clearSelections();" line and step into the code.
-
I get a message that 'Ext.getCmp("grid_name")' is undefined : but it really is, so processing just can't find it. Suspect some kind of scope error I'll have to have a look at.
-
Not scope...it's because getCmp uses the ID and not the name. Oops.:">