ASPxHint.TriggerAction Property
Gets or sets which user action triggers a hint.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v25.1.dll
NuGet Package: DevExpress.Web
Declaration
[DefaultValue(HintTriggerAction.Hover)]
public HintTriggerAction TriggerAction { get; set; }
Property Value
| Type | Default | Description |
|---|---|---|
| HintTriggerAction | Hover | A HintTriggerAction object that specifies a user action. |
Available values:
| Name | Description |
|---|---|
| None | No user action triggers a hint. |
| Hover | A hint is displayed when a user hovers a target UI element. |
| Click | A hint is displayed when a user clicks a target UI element. |
| HoverAndFocus | A hint is displayed when a user hovers and focuses a target UI element. |
Remarks
<dx:ASPxHint ID="ASPxHint1" Content="Hint Content" Selector=".class_name" TriggerAction="Hover" runat="server"></dx:ASPxHint>
The TriggerAction property is not in effect if the hint is invoked using the ASPxClientHint.Show method.
See Also