Hi All,
I have a Hierarchical grid and i have allowed the row selection in this grid,
i wrote the below code to dis allow the row selection in mastertable row
function
OnRowSelecting(sender, eventArgs) {
var OpenjobGrid = $find("ctl00_Content_rGridServiceScheduleOpen");
if (eventArgs.get_tableView().get_name() == "Master") {
OpenjobGrid.get_masterTableView().clearSelectedItems();
return false;
}
}
but still it is getting selected.
can anybody help me to disallow the row selection in mastertable.
Thanks,
Hrushikesh