MVCxClientPivotGrid.FillStateObject(obj) Method
Passes PivotGrid callback parameters to the specified object.
Declaration
FillStateObject(
obj: any
): void
Parameters
Name | Type | Description |
---|---|---|
obj | any | An object that receives PivotGrid callback parameters. |
Remarks
Use the FillStateObject method when integrating a PivotGrid with a Chart extension.
A Chart extension needs specific data to be obtained from the bound PivotGrid on callbacks. To provide this data, handle the chart’s CallbackClientSideEventsBase.BeginCallback client-side event. In the event handler, call the FillStateObject method, passing the event parameter’s MVCxClientBeginCallbackEventArgs.customArgs property value as the obj parameter.
See Also