Double clicking row

How can I attach an event that will fire when I double click the row?

You can use “onRowDblClicked” event:
grid.attachEvent(“onRowDblClicked”, function(rId,cInd){});
rId - id or the row;
cInd - index of the column.