Retrieve Radgrid DetailTable Items from Selected Item in JavaScript
Posted
by Aaron M
on Stack Overflow
See other posts from Stack Overflow
or by Aaron M
Published on 2010-03-12T21:45:31Z
Indexed on
2010/03/12
21:47 UTC
Read the original article
Hit count: 1714
radgrid
|JavaScript
I am trying to retrieve all of the children items in a detailtable of an item. I can get the item, but I am having no luck in trying to get the children items.
Here is the relevant code that I have so far
var MasterTable = radgrid.get_masterTableView();
var selectedRows = MasterTable.get_selectedItems();
for (i = 0; i < selectedRows.length; i++) {
var row = selectedRows[i];
}
© Stack Overflow or respective owner