ASPxRichEditFieldsSettings.CreateHyperlinkTooltip Property
Allows you to implement a custom tooltip for a hyperlink.
Namespace: DevExpress.Web.ASPxRichEdit
Assembly: DevExpress.Web.ASPxRichEdit.v24.2.dll
Declaration
Property Value
Type | Default | Description |
---|---|---|
String | String.Empty | A function that specifies the tooltip text. The function has two parameters: |
Property Paths
You can access this nested property as listed below:
Object Type | Path to CreateHyperlinkTooltip |
---|---|
ASPxRichEditSettings |
|
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