Select all rows on all pages
Hi,
i habe a grid with 400 rows on 8 pages (50 rows on a page).
Furthermore i have a html-button that calls the following function to select or deselect all rows in the grid.
function checkAllRows(state)
{
var all = obj.getProperty('row/values');
obj.setProperty('selection/values', (state? all:[]));
}
The function selects all rows on page 1. But if i change to page 2 or 3,
no rows are selected on this pages.
What can i do?
Thanks
i habe a grid with 400 rows on 8 pages (50 rows on a page).
Furthermore i have a html-button that calls the following function to select or deselect all rows in the grid.
function checkAllRows(state)
{
var all = obj.getProperty('row/values');
obj.setProperty('selection/values', (state? all:[]));
}
The function selects all rows on page 1. But if i change to page 2 or 3,
no rows are selected on this pages.
What can i do?
Thanks
Nick
July 15,