Im using Extjs 4.1 with a gridpanel. Now I want to get a row by id/index to just hide it (not filter).
I tried that (it says there is no method getRow):
gridpanel.getView().getRow( 0 );
What is the correct way now?
I know gridview
has getRow
, so why cant I use it?
Edit: there seems to be no such method in 4.
getRow
doesn't exist, you're probably looking forgetRecord
- RobgetRecord
will probably return the model instead of the actual row... - Rob