Default row selection in Dash

My dash app has a table which has checkboxes for selection. I want to know if there is any functionality that by default some rows will be selected and then the user can select/deselect any rows as per his wish?

Have you tried initializing the property that represents selected rows to something? Instead of just listening to it via a callback?

Yes! But I am not sure if I should directly initialize the rows to the selected_rows or should it be the indices?