Determines if partial or full update of grid's HTML content will take place during callback.

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

Syntax

C#
[DefaultValueAttribute(true)]
[C1CategoryAttribute("Category.Callback")]
[JsonAttribute(true, true, true)]
[LayoutAttribute(LayoutType.Behavior)]
public virtual bool OptimizePartialRendering { get; set; }
Visual Basic
<DefaultValueAttribute(True)> _
<C1CategoryAttribute("Category.Callback")> _
<JsonAttribute(True, True, True)> _
<LayoutAttribute(LayoutType.Behavior)> _
Public Overridable Property OptimizePartialRendering As Boolean
	Get
	Set

Field Value

The default value is true.

Remarks

Partial rendering is used with callbacks. When enabled, server sends only necessary HTML code portions to a client as a result of callback thus performing smart update. Partial rendering is used for edit, update, cancel, select actions, group expanding and virtual scrolling. If for any reason you need full update of C1GridView HTML code, set this property to false.

See Also