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

EditablePreviewEnabled Function

Enables the Highlight Editing Fields action.

#Declaration

TypeScript
export const EditablePreviewEnabled: DevExpress.Analytics.Internal.IGlobalSubscribableValue<boolean>

#Parameters

Name Type
newVal boolean

#Returns

Type Description
boolean

True to enable the Highlight Editing Fields action; otherwise, false.

#Remarks

Set the EditablePreviewEnabled property to false to disable the action that highlights editable fields. For more information on editable fields, review the following topic: Edit Content in Print Preview.

You can handle the ASPxClientWebDocumentViewer.CustomizeElements event and specify the EditablePreviewEnabled setting to remove the Highlight Editing Fields action in the Document Viewer:

<dx:ASPxWebDocumentViewer ID="ASPxWebDocumentViewer1" runat="server">
    <ClientSideEvents CustomizeElements = "function(s, e) {
        DevExpress.Reporting.Viewer.Settings.EditablePreviewEnabled(true);}" />
</dx:ASPxWebDocumentViewer>