Based of the user input, one the table loads, I need to select a particular row. I am able to accomplish this using the following code
selectRow={{
mode: 'radio',
clickToSelect: true,
selected: [selectedRow]
}}
But row is not in the user display due to the size of the panel where the table is loaded. Is there a way to scroll to the selected row programmatically?
In other words, how can I access the element id/ref of the row/cell selected to pull the concerned record into the display?