aspnet-devexpress-dot-web-dot-aspxpivotgrid-dot-aspxpivotgrid-31b7a915.md
Enables you to supply any server data that can then be parsed on the client.
Namespace : DevExpress.Web.ASPxPivotGrid
Assembly : DevExpress.Web.ASPxPivotGrid.v25.2.dll
NuGet Package : DevExpress.Web
public Dictionary<string, object> JSProperties { get; }
Public ReadOnly Property JSProperties As Dictionary(Of String, Object)
| Type | Description |
|---|---|
| Dictionary<String, Object> |
The collection of property names and their values.
|
In some instances, it is necessary to obtain server information on the client. The JSProperties property enables you to declare temporary client properties. The JSProperties property represents a collection of property names and their values. Once declared, a property can be accessed on the client.
Note
The only requirement is that property names must begin with the ‘cp’ prefix, to avoid rewriting the ASPxPivotGrid‘s base properties.
ASPxPivotGrid1.JSProperties["cpTabIndex"] = ASPxPivotGrid1.TabIndex;
<input id="Button1" type="button" value="Tab Index" onclick="alert(grid.cpTabIndex)" />
See Also