Skip to main content

ASPxClientHintOptions.hideNativeTooltipForNestedTitleAttributes Property

Specifies whether to hide native tooltips for an item and its nested items.

Declaration

hideNativeTooltipForNestedTitleAttributes: boolean

Property Value

Type Description
boolean

true, to hide native tooltips for an item and its nested items; otherwise, false.

Remarks

The following example illustrates how to use the hideNativeTooltipForNestedTitleAttributes option.

<dx:ASPxMenu ID="ASPxMenu1" runat="server">
    <Items>
        <dx:MenuItem Text="Item 1" ToolTip="Tooltip 1"></dx:MenuItem>
        <dx:MenuItem Text="Item 2" ToolTip="Tooltip 2"></dx:MenuItem>
        <dx:MenuItem Text="Item 3" ToolTip="Tooltip 3">
            <Items>
                <dx:MenuItem Text="Item 31" ToolTip="Tooltip 31"></dx:MenuItem>
                <dx:MenuItem Text="Item 32" ToolTip="Tooltip 32"></dx:MenuItem>
                <dx:MenuItem Text="Item 33" ToolTip="Tooltip 33">
                </dx:MenuItem>
            </Items>
        </dx:MenuItem>
    </Items>
</dx:ASPxMenu>
See Also