Skip to main content
All docs
V25.1
  • ASPxRichEditFieldsSettings.CreateHyperlinkTooltip Property

    Allows you to implement a custom tooltip for a hyperlink.

    Namespace: DevExpress.Web.ASPxRichEdit

    Assembly: DevExpress.Web.ASPxRichEdit.v25.1.dll

    NuGet Package: DevExpress.Web.Office

    Declaration

    [DefaultValue("")]
    public string CreateHyperlinkTooltip { get; set; }

    Property Value

    Type Default Description
    String String.Empty

    A function that specifies the tooltip text. The function has two parameters:
    The first parameter contains a hyperlink’s tooltip text.
    The second parameter contains the tooltip hint (default value: \n Ctrl + Click to follow link)

    Property Paths

    You can access this nested property as listed below:

    Object Type Path to CreateHyperlinkTooltip
    ASPxRichEditSettings
    .Fields .CreateHyperlinkTooltip

    Remarks

    <script type="text/javascript">
      function onCreateHyperlinkTooltip(hyperlinkTooltip, hint) {
        return (hyperlinkTooltip + "\nClick to follow link")
      };
    </script>
    <dx:ASPxRichEdit ID="DemoRichEdit" runat="server" Width="100%" Height="700px">
      <Settings>
        <Fields OpenHyperlinkOnClick="true" CreateHyperlinkTooltip="onCreateHyperlinkTooltip" />
      </Settings>
    </dx:ASPxRichEdit>
    
    See Also