Events"
From Documentation
Line 43: | Line 43: | ||
<!-- TODO --> | <!-- TODO --> | ||
− | ==PivotHeaderContext== | + | ===PivotHeaderContext=== |
<!-- TODO --> | <!-- TODO --> | ||
Revision as of 03:56, 30 March 2011
PivotUIEvent
PivotUIEvent is fired when user operates on the Pivottable. This event class covers the following types of Events: onPivotNodeOpen, onPivotPopup, onPivotTooltip, onPivotContext.
The effective regions where the event will occur are column area, row area, and data area. In other words, activities in title cells do not trigger this event.
onPivotNodeOpen
This event is fired when user clicks on the open/close icon of a header node rows or columns.
onPivotPopup (left click)
This event is fired when user left-clicks on a cell.
- If this event is not listened, the event will not be fired.
<pivottable model=""${model} onPivotPopup='alert("Pivot Popup!")' />
onPivotTooltip (mouse over)
This event is fired when user's cursor hovers on a cell.
- If this event is not listened, the event will not be fired.
<pivottable model=""${model} onPivotTooltip='alert("Pivot Popup!")' /><!-- TODO -->
onPivotContext (right click)
This event is fired when user right-clicks on a cell.
- If this event is not listened, the event will not be fired.
<pivottable model=""${model} onPivotContext='alert("Pivot Popup!")' /><!-- TODO -->
Information provided by PivotUIEvent
PivotUIEvent provides the following information:
- Mouse coordinate relative to Pivottable component.
- Data field on which the event occurs (null if not applicable)
- Header node and subtotal on which the event occurs, for both row and column
- The row and column indices on which the event occurs
PivotHeaderContext
Version History
Version | Date | Content |
---|---|---|