Class GridViewResponse
- Namespace
- Dynamicweb.Core.UI
- Assembly
- Dynamicweb.Core.UI.dll
The class GridViewResponse represents valid response object of Dynamicweb.UI.Elements.Displays.GridView control.
public class GridViewResponse
- Inheritance
-
GridViewResponse
- Inherited Members
Properties
Current
Gets or sets current GridView page index.
[JsonProperty(PropertyName = "current")]
public int Current { get; set; }
Property Value
Rows
Gets or sets GridView rows objects collection.
[JsonProperty(PropertyName = "rows")]
public IEnumerable<object> Rows { get; set; }
Property Value
Total
Gets or sets total of the GridView items.
[JsonProperty(PropertyName = "total")]
public int Total { get; set; }