Skip to main content
All docs
V24.2

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

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:

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

@code {
    DxReportViewer reportViewer;

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