PivotGridEventBuilder
Methods
DataBinding(System.String)
Fired before the widget binds to its data source.The event handler function context (available via the this keyword) will be set to the widget instance.
For more information see DataBinding event.
Parameters
handler - System.String
The name of the JavaScript function that will handle the dataBinding event.
DataBinding(System.Func)
Fired before the widget binds to its data source.The event handler function context (available via the this keyword) will be set to the widget instance.
For more information see DataBinding event.
Parameters
handler - System.Func<Object,Object>
The handler code wrapped in a text tag.
DataBound(System.String)
Fired after the widget is bound to the data from its data source.The event handler function context (available via the this keyword) will be set to the widget instance.
For more information see DataBound event.
Parameters
handler - System.String
The name of the JavaScript function that will handle the dataBound event.
DataBound(System.Func)
Fired after the widget is bound to the data from its data source.The event handler function context (available via the this keyword) will be set to the widget instance.
For more information see DataBound event.
Parameters
handler - System.Func<Object,Object>
The handler code wrapped in a text tag.
ExpandMember(System.String)
Fired before column or row field is expanded.The event handler function context (available via the this keyword) will be set to the widget instance.
For more information see ExpandMember event.
Parameters
handler - System.String
The name of the JavaScript function that will handle the expandMember event.
ExpandMember(System.Func)
Fired before column or row field is expanded.The event handler function context (available via the this keyword) will be set to the widget instance.
For more information see ExpandMember event.
Parameters
handler - System.Func<Object,Object>
The handler code wrapped in a text tag.
CollapseMember(System.String)
Fired before column or row field is collapsed.The event handler function context (available via the this keyword) will be set to the widget instance.
For more information see CollapseMember event.
Parameters
handler - System.String
The name of the JavaScript function that will handle the collapseMember event.
CollapseMember(System.Func)
Fired before column or row field is collapsed.The event handler function context (available via the this keyword) will be set to the widget instance.
For more information see CollapseMember event.
Parameters
handler - System.Func<Object,Object>
The handler code wrapped in a text tag.
ExcelExport(System.String)
Fired when saveAsExcel method is called.
For more information see ExcelExport event.
Parameters
handler - System.String
The name of the JavaScript function that will handle the excelExport event.
ExcelExport(System.Func)
Fired when saveAsExcel method is called.
For more information see ExcelExport event.
Parameters
handler - System.Func<Object,Object>
The handler code wrapped in a text tag.
PdfExport(System.String)
Fired when the user clicks the "Export to PDF" toolbar button.
For more information see PdfExport event.
Parameters
handler - System.String
The name of the JavaScript function that will handle the pdfExport event.
PdfExport(System.Func)
Fired when the user clicks the "Export to PDF" toolbar button.
For more information see PdfExport event.
Parameters
handler - System.Func<Object,Object>
The handler code wrapped in a text tag.