Skip to main content

SchedulerFormTemplateContainer.PopupFormCloseAction Property

Gets an action that forces a popup form to close.

Namespace: DevExpress.Web.ASPxScheduler

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

NuGet Package: DevExpress.Web.Scheduler

Declaration

public virtual CloseAction PopupFormCloseAction { get; }

Property Value

Type Description
CloseAction

The close action.

Available values:

Name Description
None

Specifies that a popup element can’t be closed via an end-user interaction, but can be closed programmatically via specific client script methods.

CloseButton

Specifies that a popup element is closed when clicking its close button (if any).

OuterMouseClick

Specifies that a popup element is closed when clicking a mouse button outside the popup element.

MouseOut

Specifies that a popup element is closed when the mouse cursor moves out of it.

Remarks

A displayed popup form in the Scheduler may be closed in response to a specific mouse action performed on the client side. Use the PopupFormCloseAction property to determine the precise client action which will hide the scheduler’s popup form.

See Also