In a grid with a row selected, if a user clicks on another row, is there a way of
cancelling the selection in javascript ? Like in the BeforeRowActivateHandler ?
Thanks
Hello,
The UltraWebGrid has a BeforeRowActivateHandler and a BeforeSelectChangeHandler <both on the Client Side Events list> that you can handle and plug in the javascript necessary to accomplish this task... something like:
var MyCondition = 0;
function UltraWebGrid1_BeforeSelectChangeHandler(gridName, id){
MyCondition += 1;
if (MyCondition > 2) {
return true;
}