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

ASPxFloatingActionButton.ContainerElementID Property

Specifies the ID of the HTML element or web control on the page.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v20.2.dll

NuGet Package: DevExpress.Web

Declaration

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

Property Value

Type Default Description
String String.Empty

A string value that specifies the container element ID.

Remarks

Use the ContainerElementID property to associate the floating action button with any HTML element or web control on a page. The floating action button will be displayed in front of the container. FAB-ContainerElement

Note

The HTML element or a web control should be positioned relative to its normal position.

<style type="text/css">
    #content {
        position: relative;
    }
</style>
...
<div id="content">
...
</div>

Concept

Online Demo

Floating Action Button - Features

See Also