Hi,
Row Edit Template can be activated by double click..etc.
Is there anyway to activate it by Javascript?
Thanks!
David
Hey Rajib,
What code did you try that didn't work? Was it exactly as I had?
-Dave
The code you rpovided is not working for me. I have similar requirement though.
Hey David,
There is a way to open the row edit template via JavaScript. Let me give you the code.
var grid = $find("WebDataGrid1");
var row = grid.get_rows().get_row(0);
var ret = grid.get_behaviors().get_editingCore().get_behaviors().get_rowEditingTemplate();
ret.enterEditMode(row);
This should get you going. Let me know if you have any problems.
regards,
David Young