Title says what I am trying to accomplish... client side, if cell is clicked, entire row should be selected. Row selectors are on.
brilliant.... frakken brilliant..
Thanks!!!!
Hello,
You can use the property EnableInternalRowsManagement="true" of DisplayLayout tagAnd JS code for selecting row in the client side. Please take a look at the code below:
<DisplayLayout><ClientSideEvents CellClickHandler="Fire" />
JS code for selecting row:<script type="text/javascript"> function Fire(gridName, cellName) { //var grid = igtbl_getGridById(gridName); // var row = igtbl_getRowById(cellName); var cell = igtbl_getCellById(cellName); cell.Row.setSelected(true); debugger; } </script>Hope this helps.