Hello,
I have a table with many columns, so I used SfTabControl to switch between SfDataGrids (all binded to the same Collection) with different ColumnMappings.
If I put the Grids inside the Content of a SfTabItem like:
<SfTabControl>
<SfTabItem>
<SfDataGrid/>
</SfTabItem>
</SdTabControl>
If I do it like that, the Application is very slow and unusable.
If I put the SfDataGrids outside of the TabControl and use the "SelectionChanged" Event to make the GSfDataGrids visible or collapsed, so i only see
the SfDataGrid wich is selected, the performance increases very much.
Why is that? What is happening with the Objects inside of an SfTabItem that it's such slow?
Regards`