Hello!
Found some problems when using components inside SfDialog
1. SfGrid's columns filtering don't working. Sorting is works, but filtering is not
2. SfProgressBar width don't set to 100%
|
<SfDialog>
<DialogEvents Opened="AfterOpen"></DialogEvents>
<SfProgressBar @ref="progObj"></SfProgressBar>
</SfDialog>
@code{
SfProgressBar progObj;
private void AfterOpen(Syncfusion.Blazor.Popups.OpenEventArgs args)
{
progObj.Refresh();
}
} |