In ReactTable how to find the row numbers, when ReactTable is used along showPageSizeOptions={true}
as user Can change the rows dynamically any method to find the user selected rows which helps me in adding new Entiers if user wish at perticular page and index.
Rows have an
indexproperty.I'm not entirely sure what to make of the rest of your question, but hopefully this is a start. The
indexwill always be based on the original data array passed, so if users are able to move and adjust rows, you may have to implement additional logic, as react-table does not currently expose the current row number.