Telerik Blazor question Disabling Grid Update button on Popup Edit

76 Views Asked by At

I want to make the update button on the Edit Grid popup window inactive. This is to prevent users from accidentally clicking the update button twice.

I have added the popup window picture showing update button.

 <GridSettings>
                <GridPopupEditSettings Width="40vw"
                                       Height="auto"
                                       Title="@PopupTitle"
                                       Class="custom-popup">
                </GridPopupEditSettings>
                <GridPopupEditFormSettings Orientation="@FormOrientation.Horizontal"
                                           ButtonsLayout="FormButtonsLayout.Stretch"
                                           Columns="1">
                </GridPopupEditFormSettings>
            </GridSettings>

enter image description here

0

There are 0 best solutions below