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

FABCreateAppointmentActionItem Class

Represents the action item that is located within the action group related to appointment creation.

Namespace: DevExpress.Web.ASPxScheduler

Assembly: DevExpress.Web.ASPxScheduler.v18.2.dll

Declaration

public class FABCreateAppointmentActionItem :
    SchedulerFABActionItem

Remarks


<dx:ASPxScheduler ID="DemoScheduler" runat="server" ClientInstanceName="DemoScheduler" AppointmentDataSourceID="AppointmentDataSource" ResourceDataSourceID="efResourceDataSource">
...
    <FloatingActionButton>    
        <Items>
            <dx:FABCreateAppointmentActionGroup></dx:FABCreateAppointmentActionGroup>
            <dx:FABEditAppointmentActionGroup></dx:FABEditAppointmentActionGroup>
            <dx:FABActionGroup ContextName="Scale">
                <ExpandImage Url="../Content/FAB/TimeRulerContext.svg" Width="24px" Height="24px"></ExpandImage>
                <Items>
                    ...
                    <dx:FABActionItem ActionName="Scale1Hour">
                        <Image Url="../Content/FAB/1h.svg" Width="32px" Height="32px"></Image>
                    </dx:FABActionItem>
                </Items>
            </dx:FABActionGroup>
        </Items>
    </FloatingActionButton>
...
</dx:ASPxScheduler>

Note

Refer to the Floating Action Button topic for more information.

Online Demo

Floating Action Button

See Also