RadzenDataGrid GoToPage not working when nested in a RadzenTabs

I've created 2 DataGrids with id GridA and GridB both identical with the exeption of GridB beining in a Tab.

After the data load event (equeal for both DataGrids) i want to use the GridA.GoToPage(x) and GridB.GoToPage(x) to navigate back to the last seen page.

This works perfectly for GridA but not for GridB. Any suggestions?

This DataGrid is not instantiated since by default the Tab component will load tabs content on demand. You can set RenderMode to TabRenderMode.Client and all components from non selected tab will be available.

Thanx, this does work!