- When I click on any columns header table row suddenly disappear and table has empty:
How can I solve these problems?
Thanks
CodePudding user response:
protected override async Task OnAfterRenderAsync(bool firstRender)
{
if (firstRender == true)
{
//Web API Call Simulation
// -- Initialization can and should go in OnInitializedAsync
await JsRuntime.InvokeVoidAsync("ApplyjQueryDatatable");
//StateHasChanged(); -- remove
}
}


