Skip to main content

ITextEditSettings.ShowValidationIcon Property

Specifies whether an editor shows validation icons.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v24.1.dll

NuGet Package: DevExpress.Blazor

Declaration

[DefaultValue(null)]
[Parameter]
bool? ShowValidationIcon { get; set; }

Property Value

Type Default Description
Nullable<Boolean> null

true to display a validation icon; false to hide a validation icon.

Remarks

The Grid allows you to validate input data and display errors. In EditCell and EditRow edit modes, the component automatically displays validation icons once validation is completed. In EditForm and PopupEditForm edit modes, validation icons are hidden.

Run Demo: Input Validation Read Tutorial: Validate User Input in Blazor Grid

Use the ShowValidationIcon property to enable or disable validation icons at runtime. To specify icon visibility in markup, use the DxTextEditSettings.ShowValidationIcon property.

The ITextEditSettings interface allows you to get and customize settings of editors with support for text input. You can get editor settings in the following ways. Note that you can cast settings to the base ITextEditSettings interface or to an editor-specific interface.

  • Call the GetColumnEditSettings method to get editor settings of the column bound to the specified data source field.

    Important

    You need to enclose your code between BeginUpdate and EndUpdate method calls to change values of Grid component parameters outside the Grid component markup. Otherwise, an exception occurs.

    var firstNameEditSettings = e.Grid.GetColumnEditSettings<ITextEditSettings>("FirstName");
    // or var firstNameEditSettings = e.Grid.GetColumnEditSettings<ITextBoxSettings>("FirstName");
    if(firstNameEditSettings != null) {
        e.Grid.BeginUpdate();
        firstNameEditSettings.ShowValidationIcon = false;
        e.Grid.EndUpdate();
    }
    
  • Handle the CustomizeFilterRowEditor event to customize a cell editor in the filter row.
    void Grid_CustomizeFilterRowEditor(GridCustomizeFilterRowEditorEventArgs e) {
        if(e.EditSettings is ITextEditSettings firstNameEditSettings)
        // or if(e.EditSettings is ITextBoxSettings firstNameEditSettings)
            firstNameEditSettings.ShowValidationIcon = false;
    }
    
  • Handle the CustomizeDataRowEditor event to customize a cell editor in a data row.
    void Grid_CustomizeDataRowEditor(GridCustomizeDataRowEditorEventArgs e) {
        if(e.EditSettings is ITextEditSettings firstNameEditSettings)
        // or if(e.EditSettings is ITextBoxSettings firstNameEditSettings)
            firstNameEditSettings.ShowValidationIcon = false;
    }
    
See Also