Skip to main content
Tab

LoadPanelContentViaCallback Enum

Lists values specifying the panel content loading mode.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

public enum LoadPanelContentViaCallback

Members

Name Description
None

Specifies that the content is always (initially) rendered inside panels.

OnFirstShow

Specifies that loading panel contents occurs when a panel is invoked for the first time.

OnPageLoad

Specifies that loading panel contents occurs immediately after the entire page has been loaded.

OnDock

Specifies that loading panel contents occurs after a panel is docked or it changes a position within a zone via end-user interaction. If the panel is initially docked, the panel content is loaded on the Page_Load.

OnFloating

Specifies that loading panel contents occurs after a panel leaves a zone (undocks) or after it is moved (in the floating state) via an end-user interaction.

OnDockStateChange

Specifies that loading panel contents occurs after a panel changes its state, changes its position within a zone, or is moved (in the floating state) via an end-user interaction.

Related API Members

The following properties accept/return LoadPanelContentViaCallback values:

Library Related API Members
ASP.NET Web Forms Controls ASPxDockPanel.LoadContentViaCallback
ASP.NET MVC Extensions DockPanelSettings.LoadContentViaCallback

Remarks

Values listed by this enumeration are used to set the ASPxDockPanel.LoadContentViaCallback property.

See Also