kappa
  • kappa
  • Member Topic Starter
2020-07-07T11:44:57Z
Hi Igor,

The double-click event on my grid does not fire.
I have the grid set to rowmode.
Is there a reason for this ?

Thank you,

Kappa
Igor/10Tec
2020-07-07T15:12:43Z
Did you want to say that editing starts in this case? Have you tried to make iGrid read-only? What task do you need to implement?
kappa
  • kappa
  • Member Topic Starter
2020-07-07T23:28:26Z
Hi Igor,
I am sorry I did not make my question clear.
I am using my iGrid to display a list of employees, the grid is set to rowmode and read-only.
When the user double clicks on a selected employee from the grid, a form is displayed with employee's details.
I remember this happening with your active x component but I cannot remember the work around I made.

Thank you for your help.
Igor/10Tec
2020-07-08T15:41:39Z
If you are not using trees or group rows, no need to implement a workaround. I have just checked - if I set RowMode and ReadOnly properties to True, the CellDoubleClick event does the work. If this does not work for you, send us a sample to reproduce the problem.
kappa
  • kappa
  • Member Topic Starter
2020-07-08T21:53:14Z
Thank you Igor,

I was using the wrong event!
I was using the iGrid_DoubleClick event instead of the iGrid_CellDoubleClick event.
The CellDoubleClick event works fine.

What is the iGrid_DoubleClick event used for ?
Igor/10Tec
2020-07-09T15:20:26Z
The DoubleClick event is inherited from the Control class, it's a common event for all controls. CellDoubleClick is the specific event of iGrid and it is fired when a cell is double-clicked.
kappa
  • kappa
  • Member Topic Starter
2020-07-09T22:57:12Z
Thanks for you explaination..