Hi
Andrzej,
Based on your concern, it
appears that the error popup dialog is causing the grid to scroll with the
whole screen contents when the user presses [Delete] without selecting any rows
in a wide data grid. We would like to inform you that the dialog box is designed
to appear at the center of the grid by default. However, to avoid the grid from
scrolling with the whole screen contents when the dialog is shown, you can use
the "Width" property of the Grid based on your requirement.
Please refer to the attached code snippet for an example:
<SfGrid
DataSource="@Orders" AllowFiltering="true" AllowPaging="true" Width="1000" Height="315" AllowResizing="true" Toolbar="@(new string[] {"Delete" })">
<GridEditSettings AllowDeleting="true" />
</SfGrid>
|
Regards,
Prathap S