DataGrid InCell Editing by default

Hi,

I’m using your DataGrid InCell Editing in my project and it works fine.
What i would know if it’s possible to put the cells in editing mode by default.
That is to say when the grid is shown, the cells that can be edit appear in editing mode without click on the cell.

Regards,

That will defeat the purpose of our demo where only needed editor is created/rendered for specific cell in edit mode - otherwise you will get all editors for all cells rendered at once which is not going to be very performant.

OK, but how can i do access to editor.
Apparently, the editors are accessibles only when a event is invoked, isn’t it?

You can extract the code from CellClick in a method and invoke it on first render for example with desired data item and column.

Ok, that works.
Thank for your support.