Skip to main content
A newer version of this page is available. .

Placeholders

The ASPxHtmlEditor allows end-users to add placeholders to editor content. The placeholders can then be replaced with the required values.

Placeholders

The collection of placeholders available for end-users is accessed by the ASPxHtmlEditor.Placeholders property.

<dx:ASPxHtmlEditor ID="HtmlEditor" runat="server">            
     <Placeholders>
          <dx:HtmlEditorPlaceholderItem Value="FirstName" />
          <dx:HtmlEditorPlaceholderItem Value="LastName" />
          <dx:HtmlEditorPlaceholderItem Value="Title" />
          <dx:HtmlEditorPlaceholderItem Value="BirthDate" />
...

End-users can type a placeholder in the text or use the Insert Placeholder dialog, which allows end-users to insert and change placeholders.

ASPxHtmlEditor Insert Placeholder Dialog

The dialog can be invoked in the following ways.

To replace placeholders with the required values, use the client-side ASPxClientHtmlEditor.ReplacePlaceholders or server-side ASPxHtmlEditor.ReplacePlaceholders method.

Online Demo

Placeholders (Mail Merge)

See Also