Hi,
I just wanted to know, how to best use the sfDataGrid.
So far I instantiate and configure the whole data grid in the OnCreateView method, which (in general) works fine.
The problem is, that the UI gets displays only after the whole OnCeateView method has finished and returned the view.
This leads to the following effect: Let's assume we have 2 pages ...
Page 1 with a button.
Page 2 with the sfDataGrid.
When I press the button on page 1, the app navigates to page 2. Since page 2 needs some time to execute the OnCreateView method (and load the data grid), it takes some time (not much, but maybe 1 or 2 seconds) after I clicked the button and the moment the page 2 is shown. (So the user stays on page 1 and nothing happens, until page 2 with the data grid is shown ... / Just for clarification: the data, which will be displayed by the data grid is loaded async and is not the problem ... .)
Unfortunately, I am not able to show a progress bar in the meantime ...
(The loading time in generally is no problem, I just want to tell the user, what is happening ...)
Do you have an idea, how I could solve this?
Any advice appreciated!
Best,
Michael