Please, try to use the cancelBubble event for your link.
Is it possible to detach row click event?
Also you may block the row select from the onBeforeSelect event: docs.dhtmlx.com/api__dhtmlxgrid_ … event.html
for example:
grid.attachEvent(“onBeforeSelect”, function(new_row,old_row,new_col_index){
return false;
});
Still no luck
The only way that I’ve found is to reset onclick events:
$('.objbox').each(function() {
this.onclick=function(){};
});
$('.objbox .obj').each(function() {
this.onclick=function(){};
});
Is there a less obtrusive (conventional) way ?