Skip to main content
All docs
V24.2

DxViewer.EditingFieldsHighlighted Property

Specifies whether the editable fields are highlighted in the document.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v24.2.Viewer.dll

NuGet Package: DevExpress.Blazor.Viewer

Declaration

public bool EditingFieldsHighlighted { get; set; }

Property Value

Type Description
Boolean

True to highlight the editable fields; otherwise, false.

Remarks

Enable this option to highlight all editable fields available in the document.

The screenshot below shows a highlighted edit field and a toolbar button that can be used to turn highlights on or off.

Blazor Highlight Editing Fields

The following code snippet highlights all editable fields in the document that the Report Viewer displays:

<DxViewer @ref="reportViewer"></DxReportViewer>

@code {
    DxReportViewer reportViewer;

    protected override void OnAfterRender(bool firstRender)
    {
        base.OnAfterRender(firstRender);
        reportViewer.EditingFieldsHighlighted = true;
    }
}
See Also