|
S.No |
Query |
Response |
|
1. |
As the page opens the fields in the Field List flicker visible. |
We have fixed the issue which is now in testing phase. The complete solution will be available in next week patch release. (29th Dec, 2020). |
|
2. |
When you select fields in the field list the fields themselves shift, flicker and then reset to the correct position. |
We are checking the reported issue. And we will provide you the timeline for the fix on 28th Dec, 2020. |
|
3. |
The field list opens full screen width. I was able to control this with the CSS below in previous versions, but this no longer seems to work |
Issue occur due to CSS get overridden from the referred files in _Host.cshtml. Please find the screen shot below for reference.
Hence, we suggest to refer the "<link rel='nofollow' rel='nofollow' href=”_content/Syncfusion.Blazor.Themes/bootstrap4.css” rel=”stylesheet” />" alone or at end of "<head>" tag in _Host.cshtml to avoid these kind of style issue.
Also, we have checked the given CSS to override the dialog width at sample level. The given, CSS contained ID "#component-container" not occurred in the given application end. Also, we would like to inform that we are not updating this ID from Pivot Table component end. Hence, kindly ensure that the given CSS contained IDs and Class names exists in the DOM itself at your end.
|
|
<style>
body .e-dialog.e-popup { width: 50vw; } </style> |
|
<style>
.e-pivotfieldlist-container.e-dialog.e-popup { width: 50vw; } </style> |