Hello,
I looked at all the examples and posts but I could not resolve my problem, so hopefully this time someone will answer to this question.

I have a paged gridpanel, I added a listener to the RowClick event of the gridpanel so that when any row is clicked, all rows should be selected.
The problem is that only the current page gets all the rows selected, not all the grid row collection:

the handler for the listener of the gridpanel is this:

<Listeners>
   <RowClick Handler="this.getSelectionModel().selectRange(0,this.getStore().getTotalCount()-1);" />
</Listeners>
I checked the TotalCount property and the number of records is correct (32 records vs the 20 records of the grid page).
But when I switch to the second page rows are not selected at all, so I have to click a second time to get the whole collection...
What I would accomplish finally is to drag all the rows to a second grid without having to do this for every page of the first gridpanel.

Is there a way to get ALL the records selected, regardless of the showed grid page?

Thanks in advance