|
<SfGrid>
..
..
..
</SfGrid>
@code{
protected override async Task OnInitializedAsync()
{
await Task.Yield();
await LoadLibrarySurveyList(); // Data bounded here
}
} |
|
<SfGrid>
..
..
..
</SfGrid>
@code{
protected override async Task OnInitializedAsync()
{
await Task.Yield();
await LoadLibrarySurveyList(); // Data bounded here
}
} |
That worked. Thank you.
We just ran into many days trying to narrow this down.
We finally created a page to prove it is an issue with Syncfusion and not Blazor.
In our example, the data is rendered in a Syncufsion Data Grid, and at same time, same property is used to then dump Data in HTML to prove the data is present at time of rendering.
After runing multiple tests, then eventually the Grid will not render ( but the HTML shows the data is there , since they are both pulling from the same variable on the Blazor Page ).
Queston - Will be Fixed?
Is this scheduled to be given attention/fixed at some point?
If not - then plese update all the documentation on the Blazor Controls so we know we need to do
use
await Task.Yeild()
and possibly
InvokeAsync(StateHasChanged())
for Syncfusion controls on Blazor.