kappa
  • kappa
  • Member Topic Starter
2020-07-22T13:25:58Z
In my MDI application I have an igrid which shows the current loaded form name - only one column has been set in my igrid.
The grid is set to rowmode=false (as I am using cell selection).
When the user closes the current form I would like to remove the form name from my igrid (the form name is selected in the grid).
The only events I can find are 'RemoveAt' or 'RemoveRange' which applies to rows only.

Is there a way to remove this single cell from my grid?
Sergiy/10Tec
2020-07-23T03:25:55Z
If your grid has only one column, you can remove desired row and cell will be removed with it automatically.

You can not remove cells (only rows or columns). But you can clear cell contents by assigning null to it.
kappa
  • kappa
  • Member Topic Starter
2020-07-23T06:52:47Z
Thanks for your reply Sergiy,

How do I get the row index of the selected cell ?

Thank you.
kappa
  • kappa
  • Member Topic Starter
2020-07-23T11:58:46Z
Solved - Thank you.