Hi.
I have (kind of) successfully tried to implement the spanning of rows in a Datagrid as you have described here.
Issue 1: My Datagrid uses an edit mode, similar to what is described in the first example here. So if I group some rows together, editing of a single row does not work anymore.
Issue 2: I have defined a special cell rendering for the field because I need a dropdown when editing. I have done that like this:
<Column
field="channel.label"
title="Label"
filter="text"
filterable={true}
cell={ChannelDropDownCell}
/>
The issue is, if I define the cellRender property on the Grid as in your "Spanning of rows" example, the render property of the column seems to take priority and the cellRender method I have attached to the Grid itself doesn't work anymore for that field, because the field doesn't seem to be added to the GridCellProps anymore.
Any idea how to get around this?
Thanks!
Greetings,
Bernd