Skip to main content
A newer version of this page is available. .
Tab

FABActionBase.ContextName Property

Gets or sets a value that specifies the action’s context name.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v19.1.dll

Declaration

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

Property Value

Type Default Description
String String.Empty

A string value that specifies the context name.

Remarks

Use the ContextName property to specify the action’s context name.

The context name can be used to specify:

<dx:FABActionGroup ContextName="FocusedRowContext">
    <ExpandImage Url="../Content/FloatingActionButton/Images/EditRowContext.svg"></ExpandImage>
    <Items>
        <dx:FABActionItem ActionName="DeleteRow" Text="Delete">
            <Image Url="../Content/FloatingActionButton/Images/Delete.svg"></Image>
        </dx:FABActionItem>
        <dx:FABActionItem ActionName="EditRow" Text="Edit">
            <Image Url="../Content/FloatingActionButton/Images/Edit.svg"></Image>
        </dx:FABActionItem>
    </Items>
</dx:FABActionGroup>

FAB-Action-Image

Concept

Floating Action Button

Online Demo

Floating Action Button - Features

See Also