|
|
|
|
|
by dengar007
3401 days ago
|
|
I wonder if Griddle could help you out here. I think you can add a fake column that you will set up to get the entire row of data. <Griddle data={fakeData}>
<RowDefinition>
<ColumnDefinition id="id" />
<ColumnDefinition id="name" />
<ColumnDefinition id="somethingTotallyMadeUp" title="New value" customComponent={connectedCustomComponent} />
</RowDefinition>
</Griddle> From there, you can basically render whatever you want from the made-up column (but have access to everything in the row to base it on). See the following for connecting a custom component to Griddle's state management: https://github.com/GriddleGriddle/Griddle/blob/master/storie... and https://github.com/GriddleGriddle/Griddle/blob/master/storie... |
|