SfDialog problems

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%


5 Replies 1 reply marked as answer

IV Ivan August 5, 2020 09:56 AM UTC

See attached sample.
Try to filter by any column inside dialog's grid.
And look at the progressbar width.

Attachment: BlazorApp1_12e2e67c.zip


IS Indrajith Srinivasan Syncfusion Team August 6, 2020 12:49 PM UTC

Hi Ivan,  
 
Greetings from Syncfusion support, 
 
Query 1: “Grid filtering not working when Grid is inside the SFDialog“ 
  
We have already logged this as an issue from our end and the fix will be included on or before the end of August. Please find the below feedback for your reference.  
  
 
Query 2: “SfProgressBar width don't set to 100%” 
 
We suggest you to refresh the progress bar after opening the dialog using Opened event. We have modified sample and attached for your reference. Please check with below code snippet and screenshot.  
 
Code Snippet:  
 
<SfDialog>  
    <DialogEvents Opened="AfterOpen"></DialogEvents>  
    <SfProgressBar @ref="progObj"></SfProgressBar>  
</SfDialog>  
@code{  
    SfProgressBar progObj;  
    private void AfterOpen(Syncfusion.Blazor.Popups.OpenEventArgs args)  
    {  
        progObj.Refresh();  
    }  
}  
 
 
Screenshot: 
  
  
 
 
Kindly revert us, if you have any concerns.  
 
Regards, 
Indrajith 


Marked as answer

IV Ivan August 8, 2020 02:21 PM UTC

Thanks!
But there is another bug:
Gird's detail template is not render while grid placed into sfdialog.
See attached sample.
Detail templates rows won't expand

Attachment: BlazorApp1_b5c857c2.zip


IS Indrajith Srinivasan Syncfusion Team August 10, 2020 12:12 PM UTC

Hi Ivan, 
 
Good day to you, 
 
Query: Gird's detail template is not rendered while grid placed into sfdialog  
  
We have already fixed this issue internally and the fix will be available with our Volume 2 SP1 release. 
 
Regards, 
Indrajith 



IS Indrajith Srinivasan Syncfusion Team August 31, 2020 01:02 PM UTC

Hi Ivan,

Thanks for your patience,

We have resolved the reported issues and the fix is available with our Nuget package version 18.2.55.

Release Notes: https://blazor.syncfusion.com/documentation/release-notes/18.2.55/?type=all#grid

Can you please upgrade your package to this version to resolve the reported issue from your end ?

Regards,
Indrajith

Loader.
Up arrow icon