As soon as I click on Any other tab it leads to a jump to one specific tab/page.
I have checked the ids they are all unique, what else can it possibly be ?
- It is the only page with a datatable.
- The same error occurs on different browsers.
- There is no error message
Some further analysis shows it is the datatable:
As soon as I click the checkbox on the top left corner then the jump stops. No other table interaction allows the jump to stop apart from that selection.
I have also tried removing all extra options with simply:
dt.DataTable(
rows=[{}],
# optional - sets the order of columns
id=‘datatable’
),
It produces the same error as:
dt.DataTable(
rows=[{}],
row_selectable=True,
filterable=True,
sortable=True,
# optional - sets the order of columns
selected_row_indices=[],
id='datatable'
),
I guess a solution can be to select that checkbox on load ?