Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by Nevzat Pinar on Jul 31, 2009 14:02
open dhtmlx forum
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.