Skip to content

Latest commit

 

History

History

EditForm

DevExpress .NET MAUI Data Grid - Display the Edit Form and Validate Input Values

This example shows how to set up the grid to display the edit form when a user taps a cell.

The example uses the DataFormView component to implement the edit form. To assign this form to the grid, specify the DetailEditFormTemplate property. To invoke the edit form on a row tap, bind the RowTapCommand property to the ShowDetailEditForm command.

Set the DataFormView.ValidationMode property to LostFocus and handle the DataFormView.ValidateProperty event to validate input values once they are entered in the edit form.

Files to Review

Documentation

More Examples