ASPxScheduler.OptionsForms Property
Provides access to the options used to customize the forms shown to end-users.
Namespace: DevExpress.Web.ASPxScheduler
Assembly: DevExpress.Web.ASPxScheduler.v20.2.dll
Declaration
public virtual ASPxSchedulerOptionsForms OptionsForms { get; }
Public Overridable ReadOnly Property OptionsForms As ASPxSchedulerOptionsForms
Property Value
Type | Description |
---|---|
ASPxSchedulerOptionsForms | An ASPxSchedulerOptionsForms object, containing the parameters to customize the forms. |
Available values:
Name | Description |
---|---|
DialogLayoutSettings | Provides access to the Scheduler dialog’s layout settings. |
MessageBoxTemplateUrl | Gets or sets a template location for the message box. |
AppointmentInplaceEditorFormTemplateUrl | Gets or sets a template location for the form containing the in-place editor. |
RecurrentAppointmentEditFormTemplateUrl | Gets or sets a template location for the form used to prompt the user for editing of the recurrent appointment. |
RecurrentAppointmentDeleteFormTemplateUrl | Gets or sets a template location for the form used to prompt the user for the deletion of the recurrent appointment. |
GotoDateFormTemplateUrl | Gets or sets a template location for the form used to navigate to a particular date. |
RemindersFormTemplateUrl | Gets or sets a template location for the form used to edit the current appointment's associated alert. |
AppointmentFormTemplateUrl | Gets or sets a template location for the appointment's editing form. |
RecurrentAppointmentEditFormVisibility | Gets or sets the option that specifies how a form has to be shown. |
RecurrentAppointmentDeleteFormVisibility | Gets or sets the option that specifies how a form has to be shown. |
GotoDateFormVisibility | Gets or sets an option that specifies how the date navigation form is shown. |
AppointmentFormVisibility | Gets or sets the option that specifies how an appointment form has to be shown. |
Assign(BaseOptions) | Copies the settings from the specified BaseOptions object to the current object. |
ASPxSchedulerOptionsForms() | Initializes a new instance of the ASPxSchedulerOptionsForms class with default settings. |
Remarks
Use the OptionsForms property to modify the appearance and behavior of forms invoked for appointment editing, transitions from date to date etc.
<dx:ASPxScheduler id="ASPxScheduler1" runat="server" >
<OptionsForms AppointmentFormTemplateUrl="~/MyForms/MyAppointmentForm.ascx" />
...
</dx:ASPxScheduler>