ASPxClientFloatingActionButtonActionCollapsingEventArgs.contextName Property
Specifies the FAB action’s context name.
Declaration
contextName: string
Property Value
Type | Description |
---|---|
string | Specifies the FAB action’s context name. |
Remarks
Concept
Example
<dx:ASPxFloatingActionButton ID="ASPxFloatingActionButton1" runat="server" ClientInstanceName="fab" HorizontalMargin="35" ContainerElementID="form1">
<ClientSideEvents
ActionCollapsing="OnActionCollapsing"
/>
<Items>
<dx:FABAction ActionName="NewRow" ContextName="NewRowContext">
</dx:FABAction>
<dx:FABActionGroup ContextName="FocusedRowContext">
<ExpandImage Url="../Content/FloatingActionButton/Images/EditRowContext.svg"></ExpandImage>
<Items>
...
</Items>
</dx:FABActionGroup>
...
</Items>
</dx:ASPxFloatingActionButton>
Online Demo
Floating Action Button for GridView
See Also