Configure data grid editing mode in the JavaScript Pivot Table
18 Nov 20181 minute to read
The Typescript Pivot Table component provides the ability to configure various data grid options when working with drill-through functionality in editing mode. When users double-click on value cells (cells containing aggregated data), the component displays the underlying raw data in a drill-through grid popup. The beginDrillThrough event allows users to access and configure grid features such as sorting, grouping, and filtering before displaying the drill-through grid popup.
Implementation
The beginDrillThrough event occurs when users double-click on any value cell in the pivot table. This event provides access to the grid instance and its configuration options before displaying the drill-through popup, enabling users to customize the grid behavior according to their requirements.
Grid features are segregated into individual feature-wise modules. For example, to use the sorting feature, the
Sortmodule must be injected using theGrid.Inject(Sort)method.