Skip to content

Latest commit

 

History

History
38 lines (27 loc) · 3.11 KB

File metadata and controls

38 lines (27 loc) · 3.11 KB

Scheduler for ASP.NET Web Forms - How to create a custom adaptive appointment form using templates (User Control)

This example demonstrates how to use the ASPxFormLayout component in responsive mode as the main form container to make a custom appointment form adaptive.

Implementation Details

The ASPxScheduler control supports two approaches to create a custom appointment form.

In this example, the custom appointment form contains ASPxFormLayout component. The SettingsAdaptivity property is spesified to provide the form with responsive layout.

<SettingsAdaptivity>
    <GridSettings WrapCaptionAtWidth="810">
        <Breakpoints>
            <dx:LayoutBreakpoint MaxWidth="810" ColumnCount="1" Name="S" />
        </Breakpoints>
    </GridSettings>
</SettingsAdaptivity>

Files to Review

Online Demo