Gets or sets a value that determines whether only the selected page view is displayed.

Namespace:  C1.Web.UI.Controls.C1MultiPage
Assembly:  C1.Web.UI.Controls.2 (in C1.Web.UI.Controls.2.dll)

Syntax

C#
[C1CategoryAttribute("Category.Behavior")]
[JsonAttribute(true, true, false)]
[DefaultValueAttribute(false)]
public bool LoadOnDemand { get; set; }
Visual Basic (Declaration)
<C1CategoryAttribute("Category.Behavior")> _
<JsonAttribute(True, True, False)> _
<DefaultValueAttribute(False)> _
Public Property LoadOnDemand As Boolean
	Get
	Set

Remarks

Generally, you have to turn on the AutoPostBack when setting this property to true. In this situation, there is only one page rendered by the server, and when navigating to another page view, the control will post back to server and request a new page.

See Also