I've a grid which shows records from sql table. My code is such that on double clicking a row, I need to update the record. But the problem is on page load, the row is editable on first click only. After that, the row can be edited only on double click. I need help in not to edit the row on single click on page load. My code is in C# and aspx
Hello Vamsi,
What do you have set for RowEditing.EditModeActions? For the behavior that you want you should have MouseClick set to "Double". You'll also want to make sure that EnableOnActive is set to false. For more information about the EditModeActions please see the following documentation:
http://help.infragistics.com/Doc/ASPNET/Current/CLR4.0/?page=Infragistics4.Web.v14.2~Infragistics.Web.UI.GridControls.EditModeActions_members.html
You can find an example of the EditModeActions in use in the following sample:
http://es.infragistics.com/samples/aspnet/data-grid/editing-rows-client-events
Please let me know if I may be of any other help.