Categories | Question details Back To List | ||
Double clicking row How can I attach an event that will fire when I double click the row? Answer posted by dhxSupport on Aug 03, 2009 03:50 You can use "onRowDblClicked" event: grid.attachEvent("onRowDblClicked", function(rId,cInd){}); rId - id or the row; cInd - index of the column. |