I am trying to figure out how to be able to access all of the cells in a radgrid client-side, even if there are multiple pages on the grid. The code i have now to access values only works on the first page, and is included below. But i would like to be able to do something similar and extract values from all pages, without actually visibly changing pages on the browser so the client can't see. Thanks.
var
panelbar = $find(
"RadPanelBar3"
);
var
item = panelbar.findItemByText(
"Step 3: View Query Results"
);
var
qgrid = item.findControl(
"grdQResults"
);
var
masterTable = qgrid.get_masterTableView();
var
qapi = masterTable.getCellByColumnUniqueName(masterTable.get_dataItems()[0],
"Location"
).innerHTML;
var
numrows = masterTable._dataItems.length;
var
intxv = 0;
var
strfields=
""
;
for
(intxv = 0; intxv <= numrows - 1; intxv++) {
strfields = strfields + masterTable._dataItems[intxv]._element.all[1].innerHTML +
"|"
}