From GridRowProps.render is there a way to do get the row index that I am overlooking? GridCellProps has dataIndex which is what I want, but nothing equivalent seems to be available for the arguments sent to render.
I will check with the team to provide this index directly in the rowRender we will add it in a future version, if there are no concerns about it..
Regards,
Stefan
Progress Telerik
Do you want to have your say when we set our development plans?
Do you want to know when a feature you care about is added or when a bug fixed?
Explore the
Telerik Feedback Portal
and vote to affect the priority of the items
The GridRowProps have dataIndex which value represents the index of the data item:
const rowRender = (tr, props) => { console.log(props.dataIndex); return tr; }; return ( <Grid rowRender={rowRender}