I am creating a Hierarchical grid programmatically by using a radgrid with a GridTableView. This is generated fine without issue. What I would like to do is have a row click on the gridtableview rows as well as the mastertable rows. So when I click the expand icon on the main grid, the sub rows will fire the same rowclick. Which does happen, howeveer I can not seem to get hold of the datakeyvalue of the gridtableview. For example, my javascript rowclick,
RowClick fires fine, but the getDataKeyValue is always null for the sub rows (which i believe is the gridtableview). Any help with this would be much appreciated.
I have a similar issue with the contextmenu, but I guess it would be related to getting the datakeyvalue for the gridtableview.
function
RowClick(sender, eventArgs) {
eval(eventArgs.getDataKeyValue(
"ROWCLICK"
));
}
I have a similar issue with the contextmenu, but I guess it would be related to getting the datakeyvalue for the gridtableview.