Example of Selection in Javascript Pivot Table Control

/
/
Selection

This sample demonstrates different types of grid cell selection options and an event for getting complete information about the selection. The selection of headers, value cells, and summary cells can be done through mouse and keyboard actions.

More Details...

Selection Modes:
Selection Types:

Event Trace:
Description

This feature provides interactive support to highlight rows, columns, values, and summary cells that you select. Selection can be done through either mouse or keyboard interaction. To enable selection, set allowSelectionproperty as true. The pivot table supports two types of selection which can be set using selectionSettings.type property. They are: Single - Enabled by default. Allows the user to select single row or column or cell at a time. Multiple - Allows the user to select more than one row or column or cell at the same time. Also, there are three modes of selection which can be set using selectionSettings.mode property. They are: Row - Enabled by default. Enables the complete row selection in a pivot table. Column - Enables the complete column selection in a pivot table. Cell - Enables the cell selection in pivot table. Both - Enables both the row and column selection in pivot table. To perform the multiselection, hold CTRL key and click the desired cells. To select range of cells, hold SHIFT key and click the cells. While using the pivot table in a touch device environment, tap over a row, column, or other cells. This results in a pop-up with a multiselect icon. Now tap the icon to proceed with multiselection. In this demo, pick the selection type and selection mode from the properties panel in order to perform the desired selection process. The selected cell information can be seen in the Event Trace part with the help of the cellSelected event. More information on the selection can be found in this documentation section.