@bryntum/grid-angular-thin 7.2.4 → 7.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -4
- package/bundles/bryntum-grid-angular-thin.umd.js +761 -230
- package/bundles/bryntum-grid-angular-thin.umd.js.map +1 -1
- package/esm2015/lib/bryntum-a-i-filter-field.component.js +62 -14
- package/esm2015/lib/bryntum-checklist-filter-combo.component.js +62 -14
- package/esm2015/lib/bryntum-grid-base.component.js +78 -35
- package/esm2015/lib/bryntum-grid-chart-designer.component.js +61 -12
- package/esm2015/lib/bryntum-grid-field-filter-picker-group.component.js +65 -21
- package/esm2015/lib/bryntum-grid-field-filter-picker.component.js +65 -21
- package/esm2015/lib/bryntum-grid.component.js +78 -35
- package/esm2015/lib/bryntum-group-bar.component.js +61 -12
- package/esm2015/lib/bryntum-tree-combo.component.js +62 -14
- package/esm2015/lib/bryntum-tree-grid.component.js +78 -35
- package/esm2015/lib/grid.module.js +5 -4
- package/esm2015/lib/shadowdom.helper.js +82 -0
- package/fesm2015/bryntum-grid-angular-thin.js +738 -207
- package/fesm2015/bryntum-grid-angular-thin.js.map +1 -1
- package/lib/bryntum-a-i-filter-field.component.d.ts +87 -133
- package/lib/bryntum-checklist-filter-combo.component.d.ts +106 -166
- package/lib/bryntum-grid-base.component.d.ts +238 -303
- package/lib/bryntum-grid-chart-designer.component.d.ts +71 -108
- package/lib/bryntum-grid-field-filter-picker-group.component.d.ts +93 -143
- package/lib/bryntum-grid-field-filter-picker.component.d.ts +94 -145
- package/lib/bryntum-grid.component.d.ts +238 -303
- package/lib/bryntum-group-bar.component.d.ts +77 -118
- package/lib/bryntum-tree-combo.component.d.ts +107 -168
- package/lib/bryntum-tree-grid.component.d.ts +238 -303
- package/lib/grid.module.d.ts +2 -1
- package/lib/shadowdom.helper.d.ts +3 -0
- package/package.json +1 -1
- package/src/lib/bryntum-a-i-filter-field.component.ts +146 -141
- package/src/lib/bryntum-checklist-filter-combo.component.ts +166 -175
- package/src/lib/bryntum-grid-base.component.ts +275 -319
- package/src/lib/bryntum-grid-chart-designer.component.ts +126 -112
- package/src/lib/bryntum-grid-field-filter-picker-group.component.ts +152 -152
- package/src/lib/bryntum-grid-field-filter-picker.component.ts +152 -153
- package/src/lib/bryntum-grid.component.ts +275 -319
- package/src/lib/bryntum-group-bar.component.ts +132 -122
- package/src/lib/bryntum-theme-combo.component.ts +128 -0
- package/src/lib/bryntum-tree-combo.component.ts +166 -176
- package/src/lib/bryntum-tree-grid.component.ts +275 -319
- package/src/lib/grid.module.ts +2 -1
- package/src/lib/shadowdom.helper.ts +91 -0
|
@@ -2,15 +2,14 @@
|
|
|
2
2
|
* Angular wrapper for Bryntum GridBase
|
|
3
3
|
*/
|
|
4
4
|
import { ElementRef, SimpleChanges, OnDestroy, OnInit } from '@angular/core';
|
|
5
|
-
import { AjaxStore, AjaxStoreConfig, Color, DomConfig, FormulaProviderConfig, KeyMapConfig, Mask, MaskConfig, Model, ModelConfig, PagingToolbarConfig, PanelCollapserConfig, PanelCollapserOverlayConfig, PanelHeader, ScrollManager, ScrollManagerConfig, Scroller, ScrollerConfig, StateProvider, Store, StoreConfig, TabConfig, Tool, ToolConfig, ToolbarConfig, ToolbarItems, TooltipConfig, Widget } from '@bryntum/core-thin';
|
|
5
|
+
import { AjaxStore, AjaxStoreConfig, Color, DomConfig, FormulaProviderConfig, InstancePlugin, KeyMapConfig, Mask, MaskConfig, Model, ModelConfig, PagingToolbarConfig, PanelCollapserConfig, PanelCollapserOverlayConfig, PanelHeader, ScrollManager, ScrollManagerConfig, Scroller, ScrollerConfig, StateProvider, Store, StoreConfig, TabConfig, Tool, ToolConfig, ToolbarConfig, ToolbarItems, TooltipConfig, Widget } from '@bryntum/core-thin';
|
|
6
6
|
import { AI, AIConfig, AIFilter, AIFilterConfig, CellCopyPaste, CellCopyPasteConfig, CellEdit, CellEditConfig, CellMenu, CellMenuConfig, CellTooltip, CellTooltipConfig, Charts, ChartsConfig, ColumnAutoWidth, ColumnAutoWidthConfig, ColumnDragToolbar, ColumnDragToolbarConfig, ColumnPicker, ColumnPickerConfig, ColumnRename, ColumnRenameConfig, ColumnReorder, ColumnReorderConfig, ColumnResize, ColumnResizeConfig, ColumnStore, ColumnStoreConfig, GridContainerItemConfig, EmptyTextDomConfig, ExcelExporter, ExcelExporterConfig, FileDrop, FileDropConfig, FillHandle, FillHandleConfig, Filter, FilterBar, FilterBarConfig, FilterConfig, GridBase, GridBaseListeners, GridColumnConfig, GridLocation, GridLocationConfig, GridSelectionMode, GridStateInfo, Group, GroupConfig, GroupSummary, GroupSummaryConfig, HeaderMenu, HeaderMenuConfig, LockRows, LockRowsConfig, MergeCells, MergeCellsConfig, PdfExport, PdfExportConfig, PinColumns, PinColumnsConfig, PreserveScrollOptions, Print, PrintConfig, QuickFind, QuickFindConfig, RegionResize, RegionResizeConfig, ResponsiveLevelConfig, RowCopyPaste, RowCopyPasteConfig, RowEdit, RowEditConfig, RowExpander, RowExpanderConfig, RowReorder, RowReorderConfig, RowResize, RowResizeConfig, Search, SearchConfig, Sort, SortConfig, Split, SplitConfig, StickyCells, StickyCellsConfig, Stripe, StripeConfig, SubGridConfig, Summary, SummaryConfig, Tree, TreeConfig, TreeGroup, TreeGroupConfig } from '@bryntum/grid-thin';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export declare type BryntumGridBaseProps = {
|
|
9
9
|
/**
|
|
10
10
|
* Element (or element id) to adopt as this Widget's encapsulating element. The widget's
|
|
11
11
|
* content will be placed inside this element.
|
|
12
|
-
* ...
|
|
13
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-adopt)
|
|
12
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-adopt)
|
|
14
13
|
*/
|
|
15
14
|
adopt?: HTMLElement | string;
|
|
16
15
|
/**
|
|
@@ -45,15 +44,13 @@ export declare type BryntumGridBaseProps = {
|
|
|
45
44
|
/**
|
|
46
45
|
* A localizable string (May contain `'L{}'` tokens which resolve in the locale file) to inject
|
|
47
46
|
* into an element which will be linked using the `aria-describedby` attribute.
|
|
48
|
-
* ...
|
|
49
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-ariaDescription)
|
|
47
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-ariaDescription)
|
|
50
48
|
*/
|
|
51
49
|
ariaDescription?: string;
|
|
52
50
|
/**
|
|
53
51
|
* A localizable string (May contain `'L{}'` tokens which resolve in the locale file) to inject as
|
|
54
52
|
* the `aria-label` attribute.
|
|
55
|
-
* ...
|
|
56
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-ariaLabel)
|
|
53
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-ariaLabel)
|
|
57
54
|
*/
|
|
58
55
|
ariaLabel?: string;
|
|
59
56
|
/**
|
|
@@ -65,14 +62,12 @@ export declare type BryntumGridBaseProps = {
|
|
|
65
62
|
/**
|
|
66
63
|
* A Config object representing the configuration of a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar),
|
|
67
64
|
* or array of config objects representing the child items of a Toolbar. Another way to add a bbar is to use [strips](https://bryntum.com/products/grid/docs/api/Core/widget/Panel#config-strips).
|
|
68
|
-
* ...
|
|
69
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-bbar)
|
|
65
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-bbar)
|
|
70
66
|
*/
|
|
71
67
|
bbar?: (GridContainerItemConfig | string)[] | ToolbarConfig | PagingToolbarConfig | null;
|
|
72
68
|
/**
|
|
73
69
|
* Custom CSS classes to add to the panel's body element.
|
|
74
|
-
* ...
|
|
75
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-bodyCls)
|
|
70
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-bodyCls)
|
|
76
71
|
*/
|
|
77
72
|
bodyCls?: string | object;
|
|
78
73
|
/**
|
|
@@ -82,21 +77,18 @@ export declare type BryntumGridBaseProps = {
|
|
|
82
77
|
/**
|
|
83
78
|
* An object where property names with a truthy value indicate which events should bubble up the ownership
|
|
84
79
|
* hierarchy when triggered.
|
|
85
|
-
* ...
|
|
86
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-bubbleEvents)
|
|
80
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-bubbleEvents)
|
|
87
81
|
*/
|
|
88
82
|
bubbleEvents?: object;
|
|
89
83
|
/**
|
|
90
84
|
* Set to `false` to not call onXXX method names (e.g. `onShow`, `onClick`), as an easy way to listen for events.
|
|
91
|
-
* ...
|
|
92
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-callOnFunctions)
|
|
85
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-callOnFunctions)
|
|
93
86
|
*/
|
|
94
87
|
callOnFunctions?: boolean;
|
|
95
88
|
/**
|
|
96
89
|
* By default, if an event handler throws an exception, the error propagates up the stack and the
|
|
97
90
|
* application state is undefined. Code which follows the event handler will *not* be executed.
|
|
98
|
-
* ...
|
|
99
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-catchEventHandlerExceptions)
|
|
91
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-catchEventHandlerExceptions)
|
|
100
92
|
*/
|
|
101
93
|
catchEventHandlerExceptions?: boolean;
|
|
102
94
|
/**
|
|
@@ -109,8 +101,7 @@ export declare type BryntumGridBaseProps = {
|
|
|
109
101
|
* Custom CSS classes to add to element.
|
|
110
102
|
* May be specified as a space separated string, or as an object in which property names
|
|
111
103
|
* with truthy values are used as the class names:
|
|
112
|
-
* ...
|
|
113
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-cls)
|
|
104
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-cls)
|
|
114
105
|
*/
|
|
115
106
|
cls?: string | object;
|
|
116
107
|
/**
|
|
@@ -120,15 +111,13 @@ export declare type BryntumGridBaseProps = {
|
|
|
120
111
|
collapsed?: boolean;
|
|
121
112
|
/**
|
|
122
113
|
* This config enables collapsibility for the panel. See [collapsed](https://bryntum.com/products/grid/docs/api/Core/widget/Panel#config-collapsed).
|
|
123
|
-
* ...
|
|
124
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-collapsible)
|
|
114
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-collapsible)
|
|
125
115
|
*/
|
|
126
116
|
collapsible?: boolean | PanelCollapserConfig | PanelCollapserOverlayConfig;
|
|
127
117
|
/**
|
|
128
118
|
* Applies the specified color to the widget, by setting the `--b-primary` CSS variable in the widgets
|
|
129
119
|
* `style` block.
|
|
130
|
-
* ...
|
|
131
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-color)
|
|
120
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-color)
|
|
132
121
|
*/
|
|
133
122
|
color?: Color;
|
|
134
123
|
/**
|
|
@@ -142,8 +131,7 @@ export declare type BryntumGridBaseProps = {
|
|
|
142
131
|
/**
|
|
143
132
|
* Accepts column definitions for the grid during initialization. They will be used to create
|
|
144
133
|
* [Column](https://bryntum.com/products/grid/docs/api/Grid/column/Column) instances that are added to a [ColumnStore](#Grid/data/ColumnStore).
|
|
145
|
-
* ...
|
|
146
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-columns)
|
|
134
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-columns)
|
|
147
135
|
*/
|
|
148
136
|
columns?: ColumnStore | GridColumnConfig[] | ColumnStoreConfig;
|
|
149
137
|
config?: object;
|
|
@@ -151,8 +139,7 @@ export declare type BryntumGridBaseProps = {
|
|
|
151
139
|
* Custom CSS classes to add to the [contentElement](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-contentElement).
|
|
152
140
|
* May be specified as a space separated string, or as an object in which property names
|
|
153
141
|
* with truthy values are used as the class names:
|
|
154
|
-
* ...
|
|
155
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-contentElementCls)
|
|
142
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-contentElementCls)
|
|
156
143
|
*/
|
|
157
144
|
contentElementCls?: string | object;
|
|
158
145
|
/**
|
|
@@ -164,8 +151,7 @@ export declare type BryntumGridBaseProps = {
|
|
|
164
151
|
* Convenient shortcut to set data in grids store both during initialization and at runtime. Can also be
|
|
165
152
|
* used to retrieve data at runtime, although we do recommend interacting with Grids store instead using
|
|
166
153
|
* the [store](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#property-store) property.
|
|
167
|
-
* ...
|
|
168
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-data)
|
|
154
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-data)
|
|
169
155
|
*/
|
|
170
156
|
data?: object[] | Model[] | ModelConfig[];
|
|
171
157
|
/**
|
|
@@ -186,16 +172,15 @@ export declare type BryntumGridBaseProps = {
|
|
|
186
172
|
*/
|
|
187
173
|
destroyStore?: boolean;
|
|
188
174
|
/**
|
|
189
|
-
* Check for CSS compatibility issues
|
|
190
|
-
*
|
|
191
|
-
* [
|
|
175
|
+
* Check for CSS compatibility and inclusion related issues and try to auto fix them. Performs the following
|
|
176
|
+
* checks:
|
|
177
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-detectCSSCompatibilityIssues)
|
|
192
178
|
*/
|
|
193
179
|
detectCSSCompatibilityIssues?: boolean;
|
|
194
180
|
/**
|
|
195
181
|
* Disable or enable the widget. It is similar to [readOnly](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-readOnly) except a disabled widget
|
|
196
182
|
* cannot be focused, uses a different rendition (usually greyish) and does not allow selecting its value.
|
|
197
|
-
* ...
|
|
198
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-disabled)
|
|
183
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-disabled)
|
|
199
184
|
*/
|
|
200
185
|
disabled?: boolean | 'inert';
|
|
201
186
|
/**
|
|
@@ -215,28 +200,26 @@ export declare type BryntumGridBaseProps = {
|
|
|
215
200
|
* [strips collection](https://bryntum.com/products/grid/docs/api/Core/widget/Panel#config-strips). Typical values for this config are `'top'`,
|
|
216
201
|
* `'bottom'`, `'left'`, or `'right'`, which cause the widget to be placed on that side of the panel's
|
|
217
202
|
* body. Such widgets are called "edge strips".
|
|
218
|
-
* ...
|
|
219
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-dock)
|
|
203
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-dock)
|
|
220
204
|
*/
|
|
221
205
|
dock?: 'top' | 'bottom' | 'left' | 'right' | 'start' | 'end' | 'header' | 'pre-header' | object;
|
|
222
206
|
/**
|
|
223
207
|
* Make this Panel a docked drawer which slides out from one side of the browser viewport by default.
|
|
224
|
-
* ...
|
|
225
|
-
* [
|
|
226
|
-
* @param {
|
|
227
|
-
* @param {
|
|
228
|
-
* @param {boolean}
|
|
229
|
-
* @param {boolean,
|
|
230
|
-
* @param {boolean,string} autoClose.
|
|
231
|
-
* @param {
|
|
232
|
-
* @param {
|
|
233
|
-
* @param {number} autoCloseDelay When using `mouseout`, this is the delay in milliseconds
|
|
208
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-drawer)
|
|
209
|
+
* @param {'start','left','end','right','top','bottom'} [side] The side of the viewport to dock the drawer to. * `'start'` means the `inline-start` side. * `'end'` means the `inline-end` side.
|
|
210
|
+
* @param {string,number} [size] The size of the drawer in its collapsible axis.
|
|
211
|
+
* @param {boolean} [inline] If using the [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Panel#config-appendTo) config to place the drawer inside a host widget, this may be set to `true` to make the drawer inline within that host. Note that, if using this, the layout of the host element must have `flex-direction` set appropriately.
|
|
212
|
+
* @param {boolean,object} [autoClose] Specifies what user actions should automatically close the drawer. Defaults to closing when the user clicks outside of the drawer or when focus moves outside of the drawer.
|
|
213
|
+
* @param {boolean,string} [autoClose.mousedown] If the user clicks outside of the drawer, the drawer will automatically be hidden. If the value is a string, it is used as a CSS selector to filter clicks which should close the drawer.
|
|
214
|
+
* @param {boolean,string} [autoClose.focusout] If focus moves outside of the drawer, the drawer will automatically be hidden.
|
|
215
|
+
* @param {string} [autoClose.mouseout] Hides the drawer when the mouse leaves the drawer after the `autoCloseDelay` period.
|
|
216
|
+
* @param {number} [autoCloseDelay] When using `mouseout`, this is the delay in milliseconds
|
|
234
217
|
*/
|
|
235
218
|
drawer?: boolean | {
|
|
236
219
|
side?: 'start' | 'left' | 'end' | 'right' | 'top' | 'bottom';
|
|
237
220
|
size?: string | number;
|
|
238
221
|
inline?: boolean;
|
|
239
|
-
autoClose
|
|
222
|
+
autoClose?: boolean | {
|
|
240
223
|
mousedown?: boolean | string;
|
|
241
224
|
focusout?: boolean | string;
|
|
242
225
|
mouseout?: string;
|
|
@@ -246,22 +229,20 @@ export declare type BryntumGridBaseProps = {
|
|
|
246
229
|
/**
|
|
247
230
|
* An object specifying attributes to assign to the root element of this widget.
|
|
248
231
|
* Set `null` value to attribute to remove it.
|
|
249
|
-
* ...
|
|
250
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-elementAttributes)
|
|
232
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-elementAttributes)
|
|
251
233
|
*/
|
|
252
234
|
elementAttributes?: Record<string, string | null>;
|
|
253
235
|
/**
|
|
254
236
|
* Text or HTML, or a [EmptyTextDomConfig](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#typedef-EmptyTextDomConfig) block to display when there is no data to display in the grid.
|
|
255
237
|
* When using multiple Grid regions, provide the `region` property to decide where the text is shown.
|
|
256
238
|
* By default, it is shown in the first region.
|
|
257
|
-
* ...
|
|
258
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-emptyText)
|
|
239
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-emptyText)
|
|
259
240
|
*/
|
|
260
241
|
emptyText?: string | EmptyTextDomConfig;
|
|
261
242
|
/**
|
|
262
|
-
*
|
|
263
|
-
*
|
|
264
|
-
*
|
|
243
|
+
* Set to `true` to enable the [StickyCells](https://bryntum.com/products/grid/docs/api/Grid/feature/StickyCells) feature, which pins cell
|
|
244
|
+
* content to the top of the grid while rows scroll off the top but remain visible.
|
|
245
|
+
* @deprecated 7.3.0 Use `features : { stickyCells : true }` instead
|
|
265
246
|
*/
|
|
266
247
|
enableSticky?: boolean;
|
|
267
248
|
/**
|
|
@@ -285,8 +266,7 @@ export declare type BryntumGridBaseProps = {
|
|
|
285
266
|
* Use fixed row height. Setting this to `true` will configure the underlying RowManager to use fixed row
|
|
286
267
|
* height, which sacrifices the ability to use rows with variable height to gain a fraction better
|
|
287
268
|
* performance.
|
|
288
|
-
* ...
|
|
289
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-fixedRowHeight)
|
|
269
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-fixedRowHeight)
|
|
290
270
|
*/
|
|
291
271
|
fixedRowHeight?: boolean;
|
|
292
272
|
/**
|
|
@@ -300,43 +280,35 @@ export declare type BryntumGridBaseProps = {
|
|
|
300
280
|
/**
|
|
301
281
|
* Config object of a footer. May contain a `dock`, `html` and a `cls` property. A footer is not a widget,
|
|
302
282
|
* but rather plain HTML that follows the last element of the panel's body and [strips](https://bryntum.com/products/grid/docs/api/Core/widget/Panel#config-strips).
|
|
303
|
-
* ...
|
|
304
|
-
*
|
|
283
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-footer)
|
|
284
|
+
* @property {'top','right','bottom','left','start','end'} dock Where to dock
|
|
285
|
+
* @property {string} html Html to populate the footer with
|
|
286
|
+
* @property {string} cls CSS class to add to the footer
|
|
305
287
|
*/
|
|
306
|
-
footer?:
|
|
307
|
-
dock?: 'top' | 'right' | 'bottom' | 'left' | 'start' | 'end';
|
|
308
|
-
html?: string;
|
|
309
|
-
cls?: string;
|
|
310
|
-
} | string;
|
|
288
|
+
footer?: object | string;
|
|
311
289
|
/**
|
|
312
290
|
* An object which names formula prefixes which will be applied to all columns configured with
|
|
313
291
|
* `formula : true`.
|
|
314
|
-
* ...
|
|
315
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-formulaProviders)
|
|
292
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-formulaProviders)
|
|
316
293
|
*/
|
|
317
294
|
formulaProviders?: Record<string, FormulaProviderConfig>;
|
|
318
295
|
/**
|
|
319
296
|
* Refresh entire row when a record changes (`true`) or, if possible, only the cells affected (`false`).
|
|
320
|
-
* ...
|
|
321
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-fullRowRefresh)
|
|
297
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-fullRowRefresh)
|
|
322
298
|
*/
|
|
323
299
|
fullRowRefresh?: boolean;
|
|
324
300
|
/**
|
|
325
301
|
* A function called for each row to determine its height. It is passed a [record](https://bryntum.com/products/grid/docs/api/Core/data/Model) and
|
|
326
302
|
* expected to return the desired height of that records row. If the function returns a falsy value, Grids
|
|
327
303
|
* configured [rowHeight](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-rowHeight) is used.
|
|
328
|
-
* ...
|
|
329
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-getRowHeight)
|
|
304
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-getRowHeight)
|
|
330
305
|
* @param {Core.data.Model} getRowHeight.record Record to determine row height for
|
|
331
306
|
* @returns {number} Desired row height
|
|
332
307
|
*/
|
|
333
|
-
getRowHeight?: (
|
|
334
|
-
record: Model;
|
|
335
|
-
}) => number;
|
|
308
|
+
getRowHeight?: () => number;
|
|
336
309
|
/**
|
|
337
310
|
* A config [object](https://bryntum.com/products/grid/docs/api/Core/widget/Panel#typedef-PanelHeader) for the panel's header or a string in place of a `title`.
|
|
338
|
-
* ...
|
|
339
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-header)
|
|
311
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-header)
|
|
340
312
|
*/
|
|
341
313
|
header?: string | boolean | PanelHeader;
|
|
342
314
|
/**
|
|
@@ -376,16 +348,14 @@ export declare type BryntumGridBaseProps = {
|
|
|
376
348
|
id?: string;
|
|
377
349
|
/**
|
|
378
350
|
* Determines if the widgets read-only state should be controlled by its parent.
|
|
379
|
-
* ...
|
|
380
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-ignoreParentReadOnly)
|
|
351
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-ignoreParentReadOnly)
|
|
381
352
|
*/
|
|
382
353
|
ignoreParentReadOnly?: boolean;
|
|
383
354
|
/**
|
|
384
355
|
* Convenience setting to align input fields of child widgets. By default, the Field input element is
|
|
385
356
|
* placed immediately following the `label`. If you prefer to have all input fields aligned to the
|
|
386
357
|
* right, set this config to `'end'`.
|
|
387
|
-
* ...
|
|
388
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-inputFieldAlign)
|
|
358
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-inputFieldAlign)
|
|
389
359
|
*/
|
|
390
360
|
inputFieldAlign?: 'start' | 'end';
|
|
391
361
|
/**
|
|
@@ -402,14 +372,17 @@ export declare type BryntumGridBaseProps = {
|
|
|
402
372
|
keyMap?: Record<string, KeyMapConfig>;
|
|
403
373
|
/**
|
|
404
374
|
* Convenience setting to use same label placement on all child widgets.
|
|
405
|
-
* ...
|
|
406
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-labelPosition)
|
|
375
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-labelPosition)
|
|
407
376
|
*/
|
|
408
377
|
labelPosition?: 'before' | 'above' | 'align-before' | 'auto' | null;
|
|
378
|
+
/**
|
|
379
|
+
* Sets `labelWidth´ for all children of this Container, that does not define their own `labelWidth`.
|
|
380
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-labelWidth)
|
|
381
|
+
*/
|
|
382
|
+
labelWidth?: number | null;
|
|
409
383
|
/**
|
|
410
384
|
* The listener set for this object.
|
|
411
|
-
* ...
|
|
412
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-listeners)
|
|
385
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-listeners)
|
|
413
386
|
*/
|
|
414
387
|
listeners?: GridBaseListeners;
|
|
415
388
|
/**
|
|
@@ -422,15 +395,13 @@ export declare type BryntumGridBaseProps = {
|
|
|
422
395
|
* when data is loading. The message and optional configuration from the
|
|
423
396
|
* [loadMask](https://bryntum.com/products/grid/docs/api/Core/mixin/LoadMaskable#config-loadMask) config take priority over these options, just as they do
|
|
424
397
|
* for `maskDefaults`, respectively.
|
|
425
|
-
* ...
|
|
426
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-loadMaskDefaults)
|
|
398
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-loadMaskDefaults)
|
|
427
399
|
*/
|
|
428
400
|
loadMaskDefaults?: MaskConfig;
|
|
429
401
|
/**
|
|
430
402
|
* A [Mask](https://bryntum.com/products/grid/docs/api/Core/widget/Mask) config object to adjust the [maskDefaults](#Core/widget/Widget#config-maskDefaults)
|
|
431
403
|
* when an error occurs loading data.
|
|
432
|
-
* ...
|
|
433
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-loadMaskError)
|
|
404
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-loadMaskError)
|
|
434
405
|
*/
|
|
435
406
|
loadMaskError?: MaskConfig | Mask | boolean;
|
|
436
407
|
/**
|
|
@@ -468,8 +439,7 @@ export declare type BryntumGridBaseProps = {
|
|
|
468
439
|
/**
|
|
469
440
|
* Grid's `min-height`. Defaults to `10em` to be sure that the Grid always has a height wherever it is
|
|
470
441
|
* inserted.
|
|
471
|
-
* ...
|
|
472
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-minHeight)
|
|
442
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-minHeight)
|
|
473
443
|
*/
|
|
474
444
|
minHeight?: string | number;
|
|
475
445
|
/**
|
|
@@ -484,7 +454,7 @@ export declare type BryntumGridBaseProps = {
|
|
|
484
454
|
/**
|
|
485
455
|
* Specify plugins (an array of classes) in config
|
|
486
456
|
*/
|
|
487
|
-
plugins?:
|
|
457
|
+
plugins?: InstancePlugin[] | InstancePlugin;
|
|
488
458
|
/**
|
|
489
459
|
* True to preserve focused cell after loading new data
|
|
490
460
|
*/
|
|
@@ -506,30 +476,49 @@ export declare type BryntumGridBaseProps = {
|
|
|
506
476
|
preventTooltipOnTouch?: boolean;
|
|
507
477
|
/**
|
|
508
478
|
* Set to `true` to make the grid read-only, by disabling any UIs for modifying data.
|
|
509
|
-
* ...
|
|
510
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-readOnly)
|
|
479
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-readOnly)
|
|
511
480
|
*/
|
|
512
481
|
readOnly?: boolean;
|
|
513
482
|
relayStoreEvents?: boolean;
|
|
514
483
|
/**
|
|
515
484
|
* Either a default `rendition` to apply to all child widgets, or a map of renditions keyed by child widget
|
|
516
485
|
* `type`.
|
|
517
|
-
* ...
|
|
518
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-rendition)
|
|
486
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-rendition)
|
|
519
487
|
*/
|
|
520
488
|
rendition?: string | Record<string, string> | null;
|
|
521
489
|
/**
|
|
522
490
|
* Configure this property to allow the widget/component to be resized. Pressing <kbd>Shift</kbd> while resizing will
|
|
523
491
|
* constrain the aspect ratio.
|
|
524
|
-
* ...
|
|
525
|
-
* [
|
|
492
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-resizable)
|
|
493
|
+
* @property {number} [resizable.minWidth] The minimum width of the element.
|
|
494
|
+
* @property {number} [resizable.maxWidth] The maximum width of the element.
|
|
495
|
+
* @property {number} [resizable.minHeight] The minimum height of the element.
|
|
496
|
+
* @property {number} [resizable.maxHeight] The maximum height of the element
|
|
497
|
+
* @property {object} [resizable.handles] An object controlling which edges/corners are resizable.
|
|
498
|
+
* @property {boolean} [resizable.handles.topStart] Resizable from top-start corner
|
|
499
|
+
* @property {boolean} [resizable.handles.top] Resizable from top edge
|
|
500
|
+
* @property {boolean} [resizable.handles.topEnd] Resizable from top-end corner
|
|
501
|
+
* @property {boolean} [resizable.handles.end] Resizable from end edge
|
|
502
|
+
* @property {boolean} [resizable.handles.bottomEnd] Resizable from bottom-end corner
|
|
503
|
+
* @property {boolean} [resizable.handles.bottom] Resizable from bottom edge
|
|
504
|
+
* @property {boolean} [resizable.handles.bottomStart] Resizable from bottom-start corner
|
|
505
|
+
* @property {boolean} [resizable.handles.start] Resizable from start edge
|
|
526
506
|
*/
|
|
527
507
|
resizable?: boolean | {
|
|
528
508
|
minWidth?: number;
|
|
529
509
|
maxWidth?: number;
|
|
530
510
|
minHeight?: number;
|
|
531
511
|
maxHeight?: number;
|
|
532
|
-
handles?:
|
|
512
|
+
handles?: {
|
|
513
|
+
topStart?: boolean;
|
|
514
|
+
top?: boolean;
|
|
515
|
+
topEnd?: boolean;
|
|
516
|
+
end?: boolean;
|
|
517
|
+
bottomEnd?: boolean;
|
|
518
|
+
bottom?: boolean;
|
|
519
|
+
bottomStart?: boolean;
|
|
520
|
+
start?: boolean;
|
|
521
|
+
};
|
|
533
522
|
};
|
|
534
523
|
/**
|
|
535
524
|
* Set to `false` to only measure cell contents when double-clicking the edge between column headers.
|
|
@@ -537,23 +526,26 @@ export declare type BryntumGridBaseProps = {
|
|
|
537
526
|
resizeToFitIncludesHeader?: boolean;
|
|
538
527
|
/**
|
|
539
528
|
* "Break points" for which responsive config to use for columns and css.
|
|
540
|
-
* ...
|
|
541
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-responsiveLevels)
|
|
529
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-responsiveLevels)
|
|
542
530
|
*/
|
|
543
531
|
responsiveLevels?: Record<string, number | string | ResponsiveLevelConfig>;
|
|
544
532
|
/**
|
|
545
533
|
* Configure as `true` to have the component display a translucent ripple when its
|
|
546
534
|
* [focusElement](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-focusElement), or [element](#Core/widget/Widget#property-element) is tapped <em>if the
|
|
547
535
|
* current theme supports ripples</em>. Out of the box, only the Material theme supports ripples.
|
|
548
|
-
* ...
|
|
549
|
-
* [
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
536
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-ripple)
|
|
537
|
+
* @property {string} [delegate] A CSS selector to filter which child elements trigger ripples. By default, the ripple is clipped to the triggering element.
|
|
538
|
+
* @property {string} [color] A CSS color name or specification.
|
|
539
|
+
* @property {number} [radius] The ending radius of the ripple. Note that it will be clipped by the target element by default.
|
|
540
|
+
* @property {string} [clip] A string which describes how to clip the ripple if it is not to be clipped to the default element. Either the property of the widget to use as the clipping element, or a selector to allow clipping to the closest matching ancestor to the target element.
|
|
541
|
+
*/
|
|
542
|
+
ripple?: boolean | object;
|
|
543
|
+
/**
|
|
544
|
+
* The ARIA role to apply to this widget's element. By default, this is set to `'presentation'` to avoid
|
|
545
|
+
* accidentally applying a role which may interfere with screen readers.
|
|
546
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-role)
|
|
547
|
+
*/
|
|
548
|
+
role?: string;
|
|
557
549
|
/**
|
|
558
550
|
* If you are rendering this widget to a shadow root inside a web component, set this config to the shadowRoot. If not inside a web component, set it to `document.body`
|
|
559
551
|
*/
|
|
@@ -562,8 +554,7 @@ export declare type BryntumGridBaseProps = {
|
|
|
562
554
|
* Row height in pixels. This allows the default height for rows to be controlled. Note that it may be
|
|
563
555
|
* overridden by specifying a [rowHeight](https://bryntum.com/products/grid/docs/api/Grid/data/GridRowModel#field-rowHeight) on a per record basis, or from
|
|
564
556
|
* a column [renderer](https://bryntum.com/products/grid/docs/api/Grid/column/Column#config-renderer).
|
|
565
|
-
* ...
|
|
566
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-rowHeight)
|
|
557
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-rowHeight)
|
|
567
558
|
*/
|
|
568
559
|
rowHeight?: number;
|
|
569
560
|
/**
|
|
@@ -572,15 +563,13 @@ export declare type BryntumGridBaseProps = {
|
|
|
572
563
|
rowLines?: boolean;
|
|
573
564
|
/**
|
|
574
565
|
* This may be configured as `true` to make the widget's element use the `direction:rtl` style.
|
|
575
|
-
* ...
|
|
576
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-rtl)
|
|
566
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-rtl)
|
|
577
567
|
*/
|
|
578
568
|
rtl?: boolean;
|
|
579
569
|
/**
|
|
580
570
|
* Configures whether the grid is scrollable in the `Y` axis. This is used to configure a [Scroller](https://bryntum.com/products/grid/docs/api/Core/helper/util/Scroller).
|
|
581
571
|
* See the [scrollerClass](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-scrollerClass) config option.
|
|
582
|
-
* ...
|
|
583
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-scrollable)
|
|
572
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-scrollable)
|
|
584
573
|
*/
|
|
585
574
|
scrollable?: boolean | ScrollerConfig | Scroller;
|
|
586
575
|
/**
|
|
@@ -595,19 +584,19 @@ export declare type BryntumGridBaseProps = {
|
|
|
595
584
|
/**
|
|
596
585
|
* Selection configuration settings, change these properties to control how selection works and what can be
|
|
597
586
|
* selected.
|
|
598
|
-
* ...
|
|
599
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-selectionMode)
|
|
587
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-selectionMode)
|
|
600
588
|
*/
|
|
601
589
|
selectionMode?: GridSelectionMode;
|
|
602
590
|
/**
|
|
603
591
|
* Configure as `true` to have the grid show a red "changed" tag in cells whose
|
|
604
592
|
* field value has changed and not yet been committed.
|
|
605
|
-
* ...
|
|
606
|
-
*
|
|
593
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-showDirty)
|
|
594
|
+
* @property {boolean} showDirty.duringEdit Set to `true` to show the red tag while editing a cell
|
|
595
|
+
* @property {boolean} showDirty.newRecord Set to `true` to show the red tag for all the cells of the new record
|
|
607
596
|
*/
|
|
608
597
|
showDirty?: boolean | {
|
|
609
|
-
duringEdit
|
|
610
|
-
newRecord
|
|
598
|
+
duringEdit: boolean;
|
|
599
|
+
newRecord: boolean;
|
|
611
600
|
};
|
|
612
601
|
/**
|
|
613
602
|
* Programmatic control over how many columns to span when used in a grid layout.
|
|
@@ -615,121 +604,105 @@ export declare type BryntumGridBaseProps = {
|
|
|
615
604
|
span?: number;
|
|
616
605
|
/**
|
|
617
606
|
* This value can be one of the following:
|
|
618
|
-
* ...
|
|
619
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-stateful)
|
|
607
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-stateful)
|
|
620
608
|
*/
|
|
621
609
|
stateful?: boolean | object | string[];
|
|
622
610
|
/**
|
|
623
611
|
* The events that, when fired by this component, should trigger it to save its state by calling
|
|
624
612
|
* [saveState](https://bryntum.com/products/grid/docs/api/Core/mixin/State#function-saveState).
|
|
625
|
-
* ...
|
|
626
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-statefulEvents)
|
|
613
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-statefulEvents)
|
|
627
614
|
*/
|
|
628
615
|
statefulEvents?: object | string[];
|
|
629
616
|
/**
|
|
630
617
|
* The key to use when saving this object's state in the [stateProvider](https://bryntum.com/products/grid/docs/api/Core/mixin/State#config-stateProvider). If this config is
|
|
631
618
|
* not assigned, and [stateful](https://bryntum.com/products/grid/docs/api/Core/mixin/State#config-stateful) is not set to `false`, the [id](#Core/widget/Widget#config-id)
|
|
632
619
|
* (if explicitly specified) will be used as the `stateId`.
|
|
633
|
-
* ...
|
|
634
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-stateId)
|
|
620
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-stateId)
|
|
635
621
|
*/
|
|
636
622
|
stateId?: string;
|
|
637
623
|
/**
|
|
638
624
|
* The `StateProvider` to use to save and restore this object's [state](https://bryntum.com/products/grid/docs/api/Core/mixin/State#property-state). By default, `state`
|
|
639
625
|
* will be saved using the [default state provider](https://bryntum.com/products/grid/docs/api/Core/state/StateProvider#property-instance-static).
|
|
640
|
-
* ...
|
|
641
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-stateProvider)
|
|
626
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-stateProvider)
|
|
642
627
|
*/
|
|
643
628
|
stateProvider?: StateProvider;
|
|
644
629
|
/**
|
|
645
630
|
* The properties of this settings object controls how grid is restored from state data.
|
|
646
|
-
* ...
|
|
647
|
-
* [
|
|
631
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-stateSettings)
|
|
632
|
+
* @property {boolean} [restoreUnconfiguredColumns] Determines whether to restore columns from the state that are not explicitly defined in the grid configuration.
|
|
648
633
|
*/
|
|
649
|
-
stateSettings?:
|
|
650
|
-
restoreUnconfiguredColumns?: boolean;
|
|
651
|
-
};
|
|
634
|
+
stateSettings?: object;
|
|
652
635
|
/**
|
|
653
636
|
* Store that holds records to display in the grid, or a store config object. If the configuration contains
|
|
654
637
|
* a `readUrl`, an `AjaxStore` will be created.
|
|
655
|
-
* ...
|
|
656
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-store)
|
|
638
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-store)
|
|
657
639
|
*/
|
|
658
640
|
store?: Store | StoreConfig | AjaxStore | AjaxStoreConfig;
|
|
659
641
|
/**
|
|
660
642
|
* An object containing widgets keyed by name. By default (when no `type` is given), strips are
|
|
661
643
|
* [toolbars](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar). If you want to pass an array, you can use
|
|
662
644
|
* the toolbar's [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-items).
|
|
663
|
-
* ...
|
|
664
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-strips)
|
|
645
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-strips)
|
|
665
646
|
*/
|
|
666
647
|
strips?: Record<string, GridContainerItemConfig>;
|
|
667
648
|
/**
|
|
668
649
|
* An object containing sub grid configuration objects keyed by a `region` property.
|
|
669
650
|
* By default, grid has a 'locked' region (if configured with locked columns) and a 'normal' region.
|
|
670
651
|
* The 'normal' region defaults to use `flex: 1`.
|
|
671
|
-
* ...
|
|
672
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-subGridConfigs)
|
|
652
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-subGridConfigs)
|
|
673
653
|
*/
|
|
674
654
|
subGridConfigs?: Record<string, SubGridConfig>;
|
|
675
655
|
/**
|
|
676
656
|
* A [Mask](https://bryntum.com/products/grid/docs/api/Core/widget/Mask) config object, or a message to be shown when Crud Manager
|
|
677
657
|
* is persisting changes on the server. Set to `null` to disable default sync mask.
|
|
678
|
-
* ...
|
|
679
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-syncMask)
|
|
658
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-syncMask)
|
|
680
659
|
*/
|
|
681
660
|
syncMask?: string | MaskConfig | null;
|
|
682
661
|
/**
|
|
683
662
|
* A configuration for the [tab](https://bryntum.com/products/grid/docs/api/Core/widget/Tab) created for this widget when it is placed in a
|
|
684
663
|
* [TabPanel](https://bryntum.com/products/grid/docs/api/Core/widget/TabPanel). For example, this config can be used to control the icon of the `tab` for
|
|
685
664
|
* this widget:
|
|
686
|
-
* ...
|
|
687
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-tab)
|
|
665
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-tab)
|
|
688
666
|
*/
|
|
689
667
|
tab?: boolean | TabConfig;
|
|
690
668
|
/**
|
|
691
669
|
* When this container is used as a tab in a TabPanel, these items are added to the
|
|
692
670
|
* [TabBar](https://bryntum.com/products/grid/docs/api/Core/widget/TabBar) when this container is the active tab.
|
|
693
|
-
* ...
|
|
694
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-tabBarItems)
|
|
671
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-tabBarItems)
|
|
695
672
|
*/
|
|
696
673
|
tabBarItems?: ToolbarItems[] | Widget[];
|
|
697
674
|
/**
|
|
698
675
|
* A Config object representing the configuration of a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar),
|
|
699
676
|
* or array of config objects representing the child items of a Toolbar.
|
|
700
677
|
* This creates a toolbar docked to the top of the panel immediately below the header.
|
|
701
|
-
* ...
|
|
702
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-tbar)
|
|
678
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-tbar)
|
|
703
679
|
*/
|
|
704
680
|
tbar?: (GridContainerItemConfig | string)[] | ToolbarConfig | PagingToolbarConfig | null;
|
|
705
681
|
/**
|
|
706
682
|
* A title to display in the header or owning TabPanel. Causes creation and docking of a header
|
|
707
683
|
* to the top if no header is configured.
|
|
708
|
-
* ...
|
|
709
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-title)
|
|
684
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-title)
|
|
710
685
|
*/
|
|
711
686
|
title?: string;
|
|
712
687
|
/**
|
|
713
688
|
* The [tools](https://bryntum.com/products/grid/docs/api/Core/widget/Tool) to add either before or after the `title` in the Panel header. Each
|
|
714
689
|
* property name is the reference by which an instantiated tool may be retrieved from the live
|
|
715
690
|
* `[tools](https://bryntum.com/products/grid/docs/api/Core/widget/mixin/Toolable#property-tools)` property.
|
|
716
|
-
* ...
|
|
717
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-tools)
|
|
691
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-tools)
|
|
718
692
|
*/
|
|
719
693
|
tools?: Record<string, ToolConfig> | null;
|
|
720
694
|
/**
|
|
721
695
|
* Configure UI transitions for various actions in the grid.
|
|
696
|
+
* @property {boolean} insertRecord Transition record insertions
|
|
697
|
+
* @property {boolean} removeRecord Transition record removals
|
|
698
|
+
* @property {boolean} toggleColumn Transition column visibility changes
|
|
699
|
+
* @property {boolean} expandCollapseColumn Transition parent/group column expand/collapse
|
|
700
|
+
* @property {boolean} toggleRegion Transition region expand/collapse
|
|
701
|
+
* @property {boolean} toggleTreeNode Transition tree node expand/collapse
|
|
702
|
+
* @property {boolean} toggleGroup Transition group expand/collapse
|
|
703
|
+
* @property {boolean} filterRemoval Transition row removals caused by filtering (under specific conditions)
|
|
722
704
|
*/
|
|
723
|
-
transition?:
|
|
724
|
-
insertRecord?: boolean;
|
|
725
|
-
removeRecord?: boolean;
|
|
726
|
-
toggleColumn?: boolean;
|
|
727
|
-
expandCollapseColumn?: boolean;
|
|
728
|
-
toggleRegion?: boolean;
|
|
729
|
-
toggleTreeNode?: boolean;
|
|
730
|
-
toggleGroup?: boolean;
|
|
731
|
-
filterRemoval?: boolean;
|
|
732
|
-
};
|
|
705
|
+
transition?: object;
|
|
733
706
|
/**
|
|
734
707
|
* Animation transition duration in milliseconds.
|
|
735
708
|
*/
|
|
@@ -738,8 +711,7 @@ export declare type BryntumGridBaseProps = {
|
|
|
738
711
|
* Custom CSS class name suffixes to apply to the elements rendered by this widget. This may be specified
|
|
739
712
|
* as a space separated string, an array of strings, or as an object in which property names with truthy
|
|
740
713
|
* values are used as the class names.
|
|
741
|
-
* ...
|
|
742
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-ui)
|
|
714
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-ui)
|
|
743
715
|
*/
|
|
744
716
|
ui?: 'plain' | 'toolbar' | string | object;
|
|
745
717
|
/**
|
|
@@ -758,129 +730,117 @@ export declare type BryntumGridBaseProps = {
|
|
|
758
730
|
* agent and see the responses. Which allows the user to use natural language to interact with the Grid in different
|
|
759
731
|
* ways. For example, the user can ask the agent to filter the data, sort it, or select specific records. The agent can
|
|
760
732
|
* also perform data manipulation operations such as adding, updating, deleting records.
|
|
761
|
-
* ...
|
|
762
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/feature/AI)
|
|
733
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/AI)
|
|
763
734
|
*/
|
|
764
735
|
aiFeature?: object | boolean | string | AI | AIConfig;
|
|
765
736
|
/**
|
|
766
737
|
* AI-powered filter feature for Grid. Allows users to type natural language queries to filter grid data.
|
|
767
|
-
* ...
|
|
768
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/feature/ai/AIFilter)
|
|
738
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/ai/AIFilter)
|
|
769
739
|
*/
|
|
770
740
|
aiFilterFeature?: object | boolean | string | AIFilter | AIFilterConfig;
|
|
771
741
|
/**
|
|
772
742
|
* Allows using `[Ctrl/CMD + C]`, `[Ctrl/CMD + X]` and `[Ctrl/CMD + V]` to cut, copy and paste cell or cell ranges. Also
|
|
773
743
|
* makes cut, copy and paste actions available via the cell context menu.
|
|
774
|
-
* ...
|
|
775
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/feature/CellCopyPaste)
|
|
744
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/CellCopyPaste)
|
|
776
745
|
*/
|
|
777
746
|
cellCopyPasteFeature?: object | boolean | string | CellCopyPaste | CellCopyPasteConfig;
|
|
778
747
|
/**
|
|
779
748
|
* Adding this feature to the grid and other Bryntum products which are based on the Grid (i.e. Scheduler, SchedulerPro, and Gantt)
|
|
780
749
|
* enables cell editing. Any subclass of [Field](https://bryntum.com/products/grid/docs/api/Core/widget/Field) can be used
|
|
781
750
|
* as editor for the [Column](https://bryntum.com/products/grid/docs/api/Grid/column/Column). The most popular are:
|
|
782
|
-
* ...
|
|
783
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/feature/CellEdit)
|
|
751
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/CellEdit)
|
|
784
752
|
*/
|
|
785
753
|
cellEditFeature?: object | boolean | string | CellEdit | CellEditConfig;
|
|
786
754
|
/**
|
|
787
755
|
* Right click to display context menu for cells. To invoke the cell menu in a keyboard-accessible manner, use the
|
|
788
756
|
* <kbd>Space</kbd> key when the cell is focused.
|
|
789
|
-
* ...
|
|
790
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/feature/CellMenu)
|
|
757
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/CellMenu)
|
|
791
758
|
*/
|
|
792
759
|
cellMenuFeature?: object | boolean | string | CellMenu | CellMenuConfig;
|
|
793
760
|
/**
|
|
794
761
|
* Displays a tooltip when hovering cells.
|
|
795
|
-
* ...
|
|
796
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/feature/CellTooltip)
|
|
762
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/CellTooltip)
|
|
797
763
|
*/
|
|
798
764
|
cellTooltipFeature?: object | boolean | string | CellTooltip | CellTooltipConfig;
|
|
799
765
|
/**
|
|
800
766
|
* Adds interactive charting to a Grid. [Charts](https://bryntum.com/products/grid/docs/api/Chart/widget/Chart) can be created from a selection of Grid data
|
|
801
767
|
* and updated in realtime as data changes. Supports many common chart types with extensive styling and customization
|
|
802
768
|
* options.
|
|
803
|
-
* ...
|
|
804
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/feature/Charts)
|
|
769
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/Charts)
|
|
805
770
|
*/
|
|
806
771
|
chartsFeature?: object | boolean | string | Charts | ChartsConfig;
|
|
807
772
|
/**
|
|
808
|
-
* Enables the [autoWidth](https://bryntum.com/products/grid/docs/api/Grid/column/Column#config-autoWidth) config for a grid's columns.
|
|
809
|
-
*
|
|
810
|
-
*
|
|
773
|
+
* Enables the [autoWidth](https://bryntum.com/products/grid/docs/api/Grid/column/Column#config-autoWidth) config for a grid's columns. When a column
|
|
774
|
+
* has `autoWidth` set, this feature measures the rendered content of all visible cells in that column
|
|
775
|
+
* and adjusts the column width to fit. The measurement is triggered automatically when data changes
|
|
776
|
+
* or rows are rendered.
|
|
777
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/ColumnAutoWidth)
|
|
811
778
|
*/
|
|
812
779
|
columnAutoWidthFeature?: object | boolean | string | ColumnAutoWidth | ColumnAutoWidthConfig;
|
|
813
780
|
/**
|
|
814
781
|
* Displays a toolbar while dragging column headers. Drop on a button in the toolbar to activate a certain function,
|
|
815
782
|
* for example to group by that column. This feature simplifies certain operations on touch devices.
|
|
816
|
-
* ...
|
|
817
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/feature/ColumnDragToolbar)
|
|
783
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/ColumnDragToolbar)
|
|
818
784
|
*/
|
|
819
785
|
columnDragToolbarFeature?: object | boolean | string | ColumnDragToolbar | ColumnDragToolbarConfig;
|
|
820
786
|
/**
|
|
821
787
|
* Displays a column picker (to show/hide columns) in the header context menu. Columns can be displayed in sub menus
|
|
822
788
|
* by region or tag. Grouped headers are displayed as menu hierarchies.
|
|
823
|
-
* ...
|
|
824
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/feature/ColumnPicker)
|
|
789
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/ColumnPicker)
|
|
825
790
|
*/
|
|
826
791
|
columnPickerFeature?: object | boolean | string | ColumnPicker | ColumnPickerConfig;
|
|
827
792
|
/**
|
|
828
793
|
* Allows user to rename columns by either right-clicking column header or using keyboard shortcuts when column header
|
|
829
794
|
* is focused.
|
|
830
|
-
* ...
|
|
831
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/feature/ColumnRename)
|
|
795
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/ColumnRename)
|
|
832
796
|
*/
|
|
833
797
|
columnRenameFeature?: object | boolean | string | ColumnRename | ColumnRenameConfig;
|
|
834
798
|
/**
|
|
835
|
-
* Allows user to reorder columns by dragging headers.
|
|
836
|
-
*
|
|
837
|
-
*
|
|
838
|
-
* [
|
|
799
|
+
* Allows user to reorder columns by dragging headers. Click and drag a column header to move it to a new position.
|
|
800
|
+
* Visual feedback shows the drop target while dragging. To get notified about column reorder, listen to the
|
|
801
|
+
* `change` event on the [columns](https://bryntum.com/products/grid/docs/api/Grid/data/ColumnStore) store.
|
|
802
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/ColumnReorder)
|
|
839
803
|
*/
|
|
840
804
|
columnReorderFeature?: object | boolean | string | ColumnReorder | ColumnReorderConfig;
|
|
841
805
|
/**
|
|
842
|
-
* Enables user to resize columns by dragging a handle on the right hand side of the header.
|
|
843
|
-
*
|
|
844
|
-
*
|
|
845
|
-
* [
|
|
806
|
+
* Enables user to resize columns by dragging a handle on the right hand side of the header. A drag handle
|
|
807
|
+
* appears when hovering near the right edge of a column header. Dragging it adjusts the column width, respecting
|
|
808
|
+
* any [minWidth](https://bryntum.com/products/grid/docs/api/Grid/column/Column#config-minWidth) or [maxWidth](#Grid/column/Column#config-maxWidth) constraints.
|
|
809
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/ColumnResize)
|
|
846
810
|
*/
|
|
847
811
|
columnResizeFeature?: object | boolean | string | ColumnResize | ColumnResizeConfig;
|
|
848
812
|
/**
|
|
849
813
|
* A feature that allows exporting Grid data to Excel or CSV without involving the server. It uses
|
|
850
814
|
* [TableExporter](https://bryntum.com/products/grid/docs/api/Grid/util/TableExporter) class as data provider, 3rd party provider to generate XLS files, and
|
|
851
815
|
* [Microsoft XML specification](https://msdn.microsoft.com/en-us/library/office/documentformat.openxml.spreadsheet.aspx).
|
|
852
|
-
* ...
|
|
853
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/feature/experimental/ExcelExporter)
|
|
816
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/experimental/ExcelExporter)
|
|
854
817
|
*/
|
|
855
818
|
excelExporterFeature?: object | boolean | string | ExcelExporter | ExcelExporterConfig;
|
|
856
819
|
/**
|
|
857
|
-
* An experimental feature that lets users drop files on a Widget. The widget fires
|
|
858
|
-
* In the event, you get access to the raw
|
|
859
|
-
*
|
|
860
|
-
* [
|
|
820
|
+
* An experimental feature that lets users drop files on a Widget. The widget fires a
|
|
821
|
+
* [fileDrop](https://bryntum.com/products/grid/docs/api/Grid/feature/experimental/FileDrop#event-fileDrop) event when a file is dropped onto it. In the event, you get access to the raw
|
|
822
|
+
* files as strings, that were parsed by calling `readAsBinaryString`.
|
|
823
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/experimental/FileDrop)
|
|
861
824
|
*/
|
|
862
825
|
fileDropFeature?: object | boolean | string | FileDrop | FileDropConfig;
|
|
863
826
|
/**
|
|
864
827
|
* This feature adds a fill handle to a Grid range selection, which when dragged, fills the cells being dragged over
|
|
865
828
|
* with values based on the values in the original selected range. This is similar to functionality normally seen in
|
|
866
829
|
* various spreadsheet applications.
|
|
867
|
-
* ...
|
|
868
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/feature/FillHandle)
|
|
830
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/FillHandle)
|
|
869
831
|
*/
|
|
870
832
|
fillHandleFeature?: object | boolean | string | FillHandle | FillHandleConfig;
|
|
871
833
|
/**
|
|
872
834
|
* Feature that allows filtering of the grid by settings filters on columns. The actual filtering is done by the store.
|
|
873
835
|
* For info on programmatically handling filters, see [StoreFilter](https://bryntum.com/products/grid/docs/api/Core/data/mixin/StoreFilter).
|
|
874
|
-
* ...
|
|
875
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/feature/Filter)
|
|
836
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/Filter)
|
|
876
837
|
*/
|
|
877
838
|
filterFeature?: object | boolean | string | Filter | FilterConfig;
|
|
878
839
|
/**
|
|
879
840
|
* Feature that allows filtering of the grid by entering filters on column headers.
|
|
880
841
|
* The actual filtering is done by the store.
|
|
881
842
|
* For info on programmatically handling filters, see [StoreFilter](https://bryntum.com/products/grid/docs/api/Core/data/mixin/StoreFilter).
|
|
882
|
-
* ...
|
|
883
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/feature/FilterBar)
|
|
843
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/FilterBar)
|
|
884
844
|
*/
|
|
885
845
|
filterBarFeature?: object | boolean | string | FilterBar | FilterBarConfig;
|
|
886
846
|
/**
|
|
@@ -888,141 +848,124 @@ export declare type BryntumGridBaseProps = {
|
|
|
888
848
|
* <kbd>Shift</kbd> + clicking headers, or by using the context menu, or by using two finger tap (one on header,
|
|
889
849
|
* one anywhere on grid). Use <kbd>Shift</kbd> + <kbd>Alt</kbd> + click, or the context menu, to remove a column
|
|
890
850
|
* grouper.
|
|
891
|
-
* ...
|
|
892
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/feature/Group)
|
|
851
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/Group)
|
|
893
852
|
*/
|
|
894
853
|
groupFeature?: object | boolean | string | Group | GroupConfig;
|
|
895
854
|
/**
|
|
896
855
|
* Displays a summary row as a group footer in a grouped grid. Uses the same configuration options on columns as
|
|
897
856
|
* [Summary](https://bryntum.com/products/grid/docs/api/Grid/feature/Summary).
|
|
898
|
-
* ...
|
|
899
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/feature/GroupSummary)
|
|
857
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/GroupSummary)
|
|
900
858
|
*/
|
|
901
859
|
groupSummaryFeature?: object | boolean | string | GroupSummary | GroupSummaryConfig;
|
|
902
860
|
/**
|
|
903
861
|
* Right click column header or focus it and press SPACE key to show the context menu for headers.
|
|
904
|
-
* ...
|
|
905
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/feature/HeaderMenu)
|
|
862
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/HeaderMenu)
|
|
906
863
|
*/
|
|
907
864
|
headerMenuFeature?: object | boolean | string | HeaderMenu | HeaderMenuConfig;
|
|
908
865
|
/**
|
|
909
866
|
* This feature allows records which satisfy a certain condition to be locked at the top of the grid.
|
|
910
|
-
* ...
|
|
911
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/feature/LockRows)
|
|
867
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/LockRows)
|
|
912
868
|
*/
|
|
913
869
|
lockRowsFeature?: object | boolean | string | LockRows | LockRowsConfig;
|
|
914
870
|
/**
|
|
915
871
|
* This feature merges cells that have the same value in sorted (or [optionally](https://bryntum.com/products/grid/docs/api/Grid/feature/MergeCells#config-sortedOnly) any) columns
|
|
916
872
|
* configured to [mergeCells](https://bryntum.com/products/grid/docs/api/Grid/column/Column#config-mergeCells).
|
|
917
|
-
* ...
|
|
918
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/feature/MergeCells)
|
|
873
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/MergeCells)
|
|
919
874
|
*/
|
|
920
875
|
mergeCellsFeature?: object | boolean | string | MergeCells | MergeCellsConfig;
|
|
921
876
|
/**
|
|
922
877
|
* Generates PDF/PNG files from the Grid component.
|
|
923
|
-
* ...
|
|
924
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/feature/export/PdfExport)
|
|
878
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/export/PdfExport)
|
|
925
879
|
*/
|
|
926
880
|
pdfExportFeature?: object | boolean | string | PdfExport | PdfExportConfig;
|
|
927
881
|
/**
|
|
928
882
|
* Allows pinning columns to the start or end region of the grid without any additional subGrid configurations.
|
|
929
883
|
* When pinning to a region that does not yet exist, the feature creates the required subGrid on the fly.
|
|
930
|
-
* ...
|
|
931
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/feature/PinColumns)
|
|
884
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/PinColumns)
|
|
932
885
|
*/
|
|
933
886
|
pinColumnsFeature?: object | boolean | string | PinColumns | PinColumnsConfig;
|
|
934
887
|
/**
|
|
935
888
|
* Allows printing Grid contents using browser print dialog.
|
|
936
|
-
* ...
|
|
937
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/feature/export/Print)
|
|
889
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/export/Print)
|
|
938
890
|
*/
|
|
939
891
|
printFeature?: object | boolean | string | Print | PrintConfig;
|
|
940
892
|
/**
|
|
941
893
|
* Feature that allows the user to search in a column by focusing a cell and typing. Navigate between hits using the
|
|
942
|
-
* keyboard,
|
|
943
|
-
*
|
|
944
|
-
* [
|
|
894
|
+
* keyboard, <kbd>f3</kbd> or <kbd>ctrl</kbd>/<kbd>cmd</kbd> + <kbd>g</kbd> moves to next, also pressing
|
|
895
|
+
* <kbd>shift</kbd> moves to previous.
|
|
896
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/QuickFind)
|
|
945
897
|
*/
|
|
946
898
|
quickFindFeature?: object | boolean | string | QuickFind | QuickFindConfig;
|
|
947
899
|
/**
|
|
948
900
|
* Makes the splitter between grid [sections](https://bryntum.com/products/grid/docs/api/Grid/view/SubGrid) draggable, to let users resize, and
|
|
949
901
|
* collapse/expand the sections.
|
|
950
|
-
* ...
|
|
951
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/feature/RegionResize)
|
|
902
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/RegionResize)
|
|
952
903
|
*/
|
|
953
904
|
regionResizeFeature?: object | boolean | string | RegionResize | RegionResizeConfig;
|
|
954
905
|
/**
|
|
955
906
|
* Allow using [Ctrl/CMD + C/X] and [Ctrl/CMD + V] to copy/cut-and-paste rows. Also makes cut, copy and paste actions
|
|
956
907
|
* available via the cell context menu.
|
|
957
|
-
* ...
|
|
958
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/feature/RowCopyPaste)
|
|
908
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/RowCopyPaste)
|
|
959
909
|
*/
|
|
960
910
|
rowCopyPasteFeature?: object | boolean | string | RowCopyPaste | RowCopyPasteConfig;
|
|
961
911
|
/**
|
|
962
912
|
* This feature allows editing of entire rows in a grid in a docked panel which by default slides out from the right.
|
|
963
|
-
* ...
|
|
964
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/feature/RowEdit)
|
|
913
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/RowEdit)
|
|
965
914
|
*/
|
|
966
915
|
rowEditFeature?: object | boolean | string | RowEdit | RowEditConfig;
|
|
967
916
|
/**
|
|
968
917
|
* Enables expanding of Grid rows by either row click or double click, or by adding a separate Grid column which renders
|
|
969
918
|
* a button that expands or collapses the row.
|
|
970
|
-
* ...
|
|
971
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/feature/RowExpander)
|
|
919
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/RowExpander)
|
|
972
920
|
*/
|
|
973
921
|
rowExpanderFeature?: object | boolean | string | RowExpander | RowExpanderConfig;
|
|
974
922
|
/**
|
|
975
923
|
* Allows user to reorder rows by dragging them. To get notified about row reorder listen to `change` event
|
|
976
924
|
* on the grid [store](https://bryntum.com/products/grid/docs/api/Core/data/Store).
|
|
977
|
-
* ...
|
|
978
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/feature/RowReorder)
|
|
925
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/RowReorder)
|
|
979
926
|
*/
|
|
980
927
|
rowReorderFeature?: object | boolean | string | RowReorder | RowReorderConfig;
|
|
981
928
|
/**
|
|
982
929
|
* Enables user to change row height by dragging the bottom row border. After a resize operation, the [rowHeight](https://bryntum.com/products/grid/docs/api/Grid/data/GridRowModel#field-rowHeight)
|
|
983
930
|
* field of the record is updated (when [applyToAllRows](https://bryntum.com/products/grid/docs/api/Grid/feature/RowResize#config-applyToAllRows) is `false`).
|
|
984
|
-
* ...
|
|
985
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/feature/RowResize)
|
|
931
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/RowResize)
|
|
986
932
|
*/
|
|
987
933
|
rowResizeFeature?: object | boolean | string | RowResize | RowResizeConfig;
|
|
988
934
|
/**
|
|
989
935
|
* <div class="external-example vertical" data-file="Grid/feature/Search.js"></div>
|
|
990
|
-
* ...
|
|
991
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/feature/Search)
|
|
936
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/Search)
|
|
992
937
|
*/
|
|
993
938
|
searchFeature?: object | boolean | string | Search | SearchConfig;
|
|
994
939
|
/**
|
|
995
940
|
* Allows sorting of grid by clicking (or tapping) headers, also displays which columns grid is sorted by (numbered if
|
|
996
941
|
* using multisort). Use modifier keys for multisorting: [Ctrl/CMD + click] to add sorter, [Ctrl/CMD + Alt + click] to remove sorter.
|
|
997
942
|
* The actual sorting is done by the store, see [Store.sort()](https://bryntum.com/products/grid/docs/api/Core/data/mixin/StoreSort#function-sort).
|
|
998
|
-
* ...
|
|
999
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/feature/Sort)
|
|
943
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/Sort)
|
|
1000
944
|
*/
|
|
1001
945
|
sortFeature?: object | boolean | string | Sort | SortConfig;
|
|
1002
946
|
/**
|
|
1003
947
|
* This feature allows splitting the Grid into multiple views, either by using the cell context menu, or
|
|
1004
948
|
* programmatically by calling [split()](https://bryntum.com/products/grid/docs/api/Grid/feature/Split#function-split).
|
|
1005
|
-
* ...
|
|
1006
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/feature/Split)
|
|
949
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/Split)
|
|
1007
950
|
*/
|
|
1008
951
|
splitFeature?: object | boolean | string | Split | SplitConfig;
|
|
1009
952
|
/**
|
|
1010
|
-
* A feature which pins
|
|
1011
|
-
*
|
|
1012
|
-
*
|
|
1013
|
-
* [
|
|
953
|
+
* A feature which pins cell content to the top of the grid while the row scrolls off the top but is still visible. Very
|
|
954
|
+
* similar to native `position: sticky`, which because of Grid's multiple-region setup unfortunately cannot be used to
|
|
955
|
+
* achieve the same effect.
|
|
956
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/StickyCells)
|
|
1014
957
|
*/
|
|
1015
958
|
stickyCellsFeature?: object | boolean | string | StickyCells | StickyCellsConfig;
|
|
1016
959
|
/**
|
|
1017
960
|
* Stripes rows by adding alternating CSS classes to all row elements (`b-even` and `b-odd`).
|
|
1018
|
-
*
|
|
1019
|
-
*
|
|
961
|
+
* This improves visual readability in data-heavy grids by giving adjacent rows different background colors.
|
|
962
|
+
* Style the striped rows using the `.b-even` and `.b-odd` CSS classes.
|
|
963
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/Stripe)
|
|
1020
964
|
*/
|
|
1021
965
|
stripeFeature?: object | boolean | string | Stripe | StripeConfig;
|
|
1022
966
|
/**
|
|
1023
967
|
* Displays a summary row in the grid footer.
|
|
1024
|
-
* ...
|
|
1025
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/feature/Summary)
|
|
968
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/Summary)
|
|
1026
969
|
*/
|
|
1027
970
|
summaryFeature?: object | boolean | string | Summary | SummaryConfig;
|
|
1028
971
|
/**
|
|
@@ -1030,15 +973,13 @@ export declare type BryntumGridBaseProps = {
|
|
|
1030
973
|
* exactly one [TreeColumn](https://bryntum.com/products/grid/docs/api/Grid/column/TreeColumn) among grids columns. That column will have its renderer replaced with a
|
|
1031
974
|
* tree renderer that adds padding and icon to give the appearance of a tree. The original renderer is preserved and
|
|
1032
975
|
* also called.
|
|
1033
|
-
* ...
|
|
1034
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/feature/Tree)
|
|
976
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/Tree)
|
|
1035
977
|
*/
|
|
1036
978
|
treeFeature?: object | boolean | string | Tree | TreeConfig;
|
|
1037
979
|
/**
|
|
1038
980
|
* A feature that allows transforming a flat dataset (or the leaves of a hierarchical) into a tree by specifying a
|
|
1039
981
|
* record field per parent level. Parents are generated based on each leaf's value for those fields.
|
|
1040
|
-
* ...
|
|
1041
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/feature/TreeGroup)
|
|
982
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/TreeGroup)
|
|
1042
983
|
*/
|
|
1043
984
|
treeGroupFeature?: object | boolean | string | TreeGroup | TreeGroupConfig;
|
|
1044
985
|
};
|
|
@@ -1080,7 +1021,7 @@ export declare class BryntumGridBaseComponent implements OnInit, OnDestroy {
|
|
|
1080
1021
|
side?: 'start' | 'left' | 'end' | 'right' | 'top' | 'bottom';
|
|
1081
1022
|
size?: string | number;
|
|
1082
1023
|
inline?: boolean;
|
|
1083
|
-
autoClose
|
|
1024
|
+
autoClose?: boolean | {
|
|
1084
1025
|
mousedown?: boolean | string;
|
|
1085
1026
|
focusout?: boolean | string;
|
|
1086
1027
|
mouseout?: string;
|
|
@@ -1092,16 +1033,10 @@ export declare class BryntumGridBaseComponent implements OnInit, OnDestroy {
|
|
|
1092
1033
|
enableTextSelection: boolean;
|
|
1093
1034
|
fillLastColumn: boolean;
|
|
1094
1035
|
fixedRowHeight: boolean;
|
|
1095
|
-
footer:
|
|
1096
|
-
dock?: 'top' | 'right' | 'bottom' | 'left' | 'start' | 'end';
|
|
1097
|
-
html?: string;
|
|
1098
|
-
cls?: string;
|
|
1099
|
-
} | string;
|
|
1036
|
+
footer: object | string;
|
|
1100
1037
|
formulaProviders: Record<string, FormulaProviderConfig>;
|
|
1101
1038
|
fullRowRefresh: boolean;
|
|
1102
|
-
getRowHeight: (
|
|
1103
|
-
record: Model;
|
|
1104
|
-
}) => number;
|
|
1039
|
+
getRowHeight: () => number;
|
|
1105
1040
|
header: string | boolean | PanelHeader;
|
|
1106
1041
|
hideHorizontalScrollbar: boolean;
|
|
1107
1042
|
hoverCls: string;
|
|
@@ -1115,7 +1050,7 @@ export declare class BryntumGridBaseComponent implements OnInit, OnDestroy {
|
|
|
1115
1050
|
maskDefaults: MaskConfig;
|
|
1116
1051
|
masked: boolean | string | MaskConfig;
|
|
1117
1052
|
monitorResize: boolean;
|
|
1118
|
-
plugins:
|
|
1053
|
+
plugins: InstancePlugin[] | InstancePlugin;
|
|
1119
1054
|
preserveFocusOnDatasetChange: boolean;
|
|
1120
1055
|
preserveScrollOnDatasetChange: boolean;
|
|
1121
1056
|
preventTooltipOnTouch: boolean;
|
|
@@ -1125,22 +1060,27 @@ export declare class BryntumGridBaseComponent implements OnInit, OnDestroy {
|
|
|
1125
1060
|
maxWidth?: number;
|
|
1126
1061
|
minHeight?: number;
|
|
1127
1062
|
maxHeight?: number;
|
|
1128
|
-
handles?:
|
|
1063
|
+
handles?: {
|
|
1064
|
+
topStart?: boolean;
|
|
1065
|
+
top?: boolean;
|
|
1066
|
+
topEnd?: boolean;
|
|
1067
|
+
end?: boolean;
|
|
1068
|
+
bottomEnd?: boolean;
|
|
1069
|
+
bottom?: boolean;
|
|
1070
|
+
bottomStart?: boolean;
|
|
1071
|
+
start?: boolean;
|
|
1072
|
+
};
|
|
1129
1073
|
};
|
|
1130
1074
|
resizeToFitIncludesHeader: boolean;
|
|
1131
1075
|
responsiveLevels: Record<string, number | string | ResponsiveLevelConfig>;
|
|
1132
|
-
ripple: boolean |
|
|
1133
|
-
|
|
1134
|
-
color?: string;
|
|
1135
|
-
radius?: number;
|
|
1136
|
-
clip?: string;
|
|
1137
|
-
};
|
|
1076
|
+
ripple: boolean | object;
|
|
1077
|
+
role: string;
|
|
1138
1078
|
rootElement: ShadowRoot | HTMLElement;
|
|
1139
1079
|
scrollerClass: typeof Scroller;
|
|
1140
1080
|
scrollManager: ScrollManagerConfig | ScrollManager;
|
|
1141
1081
|
showDirty: boolean | {
|
|
1142
|
-
duringEdit
|
|
1143
|
-
newRecord
|
|
1082
|
+
duringEdit: boolean;
|
|
1083
|
+
newRecord: boolean;
|
|
1144
1084
|
};
|
|
1145
1085
|
stateful: boolean | object | string[];
|
|
1146
1086
|
statefulEvents: object | string[];
|
|
@@ -1182,6 +1122,7 @@ export declare class BryntumGridBaseComponent implements OnInit, OnDestroy {
|
|
|
1182
1122
|
insertFirst: HTMLElement | string;
|
|
1183
1123
|
keyMap: Record<string, KeyMapConfig>;
|
|
1184
1124
|
labelPosition: 'before' | 'above' | 'align-before' | 'auto' | null;
|
|
1125
|
+
labelWidth: number | null;
|
|
1185
1126
|
longPressTime: number;
|
|
1186
1127
|
margin: number | string;
|
|
1187
1128
|
maxHeight: string | number;
|
|
@@ -1215,8 +1156,6 @@ export declare class BryntumGridBaseComponent implements OnInit, OnDestroy {
|
|
|
1215
1156
|
};
|
|
1216
1157
|
transitionDuration: number;
|
|
1217
1158
|
width: number | string;
|
|
1218
|
-
focusVisible: boolean;
|
|
1219
|
-
hasChanges: boolean;
|
|
1220
1159
|
originalStore: Store;
|
|
1221
1160
|
parent: Widget;
|
|
1222
1161
|
selectedCell: GridLocation | GridLocationConfig;
|
|
@@ -1276,8 +1215,7 @@ export declare class BryntumGridBaseComponent implements OnInit, OnDestroy {
|
|
|
1276
1215
|
onBeforeCancelCellEdit: any;
|
|
1277
1216
|
/**
|
|
1278
1217
|
* Fires on the owning Grid before the row editing is canceled, return false to signal that the value is invalid and editing should not be finalized.
|
|
1279
|
-
* ...
|
|
1280
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#event-beforeCancelRowEdit)
|
|
1218
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#event-beforeCancelRowEdit)
|
|
1281
1219
|
* @param {object} event Event object
|
|
1282
1220
|
* @param {Grid.view.Grid} event.grid Target grid
|
|
1283
1221
|
* @param {RowEditorContext} event.editorContext Editing context
|
|
@@ -1392,8 +1330,7 @@ export declare class BryntumGridBaseComponent implements OnInit, OnDestroy {
|
|
|
1392
1330
|
onBeforeFinishCellEdit: any;
|
|
1393
1331
|
/**
|
|
1394
1332
|
* Fires on the owning Grid before the row editing is finished, return false to signal that the value is invalid and editing should not be finalized.
|
|
1395
|
-
* ...
|
|
1396
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#event-beforeFinishRowEdit)
|
|
1333
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#event-beforeFinishRowEdit)
|
|
1397
1334
|
* @param {object} event Event object
|
|
1398
1335
|
* @param {Grid.view.Grid} event.grid Target grid
|
|
1399
1336
|
* @param {RowEditorContext} event.editorContext Editing context
|
|
@@ -1438,16 +1375,14 @@ export declare class BryntumGridBaseComponent implements OnInit, OnDestroy {
|
|
|
1438
1375
|
onBeforeRenderRows: any;
|
|
1439
1376
|
/**
|
|
1440
1377
|
* This event fires before row collapse is started.
|
|
1441
|
-
* ...
|
|
1442
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#event-beforeRowCollapse)
|
|
1378
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#event-beforeRowCollapse)
|
|
1443
1379
|
* @param {object} event Event object
|
|
1444
1380
|
* @param {Core.data.Model} event.record Record
|
|
1445
1381
|
*/
|
|
1446
1382
|
onBeforeRowCollapse: any;
|
|
1447
1383
|
/**
|
|
1448
1384
|
* This event fires before row expand is started.
|
|
1449
|
-
* ...
|
|
1450
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#event-beforeRowExpand)
|
|
1385
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#event-beforeRowExpand)
|
|
1451
1386
|
* @param {object} event Event object
|
|
1452
1387
|
* @param {Core.data.Model} event.record Record
|
|
1453
1388
|
*/
|
|
@@ -1527,8 +1462,7 @@ export declare class BryntumGridBaseComponent implements OnInit, OnDestroy {
|
|
|
1527
1462
|
onCancelCellEdit: any;
|
|
1528
1463
|
/**
|
|
1529
1464
|
* Fires when any other event is fired from the object.
|
|
1530
|
-
* ...
|
|
1531
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#event-catchAll)
|
|
1465
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#event-catchAll)
|
|
1532
1466
|
* @param {object} event Event object
|
|
1533
1467
|
* @param {{[key: string]: any, type: string}} event.event The Object that contains event details
|
|
1534
1468
|
* @param {string} event.event.type The type of the event which is caught by the listener
|
|
@@ -1570,8 +1504,7 @@ export declare class BryntumGridBaseComponent implements OnInit, OnDestroy {
|
|
|
1570
1504
|
/**
|
|
1571
1505
|
* This event fires on the owning grid before the context menu is shown for a cell.
|
|
1572
1506
|
* Allows manipulation of the items to show in the same way as in the [processItems](https://bryntum.com/products/grid/docs/api/Grid/feature/CellMenu#config-processItems).
|
|
1573
|
-
* ...
|
|
1574
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#event-cellMenuBeforeShow)
|
|
1507
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#event-cellMenuBeforeShow)
|
|
1575
1508
|
* @param {object} event Event object
|
|
1576
1509
|
* @param {Grid.view.Grid} event.source The grid
|
|
1577
1510
|
* @param {Core.widget.Menu} event.menu The menu
|
|
@@ -1752,8 +1685,7 @@ export declare class BryntumGridBaseComponent implements OnInit, OnDestroy {
|
|
|
1752
1685
|
onCopy: any;
|
|
1753
1686
|
/**
|
|
1754
1687
|
* Fired when data in the store changes.
|
|
1755
|
-
* ...
|
|
1756
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#event-dataChange)
|
|
1688
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#event-dataChange)
|
|
1757
1689
|
* @param {object} event Event object
|
|
1758
1690
|
* @param {Grid.view.GridBase} event.source Owning grid
|
|
1759
1691
|
* @param {Core.data.Store} event.store The originating store
|
|
@@ -1857,8 +1789,7 @@ export declare class BryntumGridBaseComponent implements OnInit, OnDestroy {
|
|
|
1857
1789
|
onFinishCellEdit: any;
|
|
1858
1790
|
/**
|
|
1859
1791
|
* Fires on the owning Grid before the row editing is finished, return false to signal that the value is invalid and editing should not be finalized.
|
|
1860
|
-
* ...
|
|
1861
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#event-finishRowEdit)
|
|
1792
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#event-finishRowEdit)
|
|
1862
1793
|
* @param {object} event Event object
|
|
1863
1794
|
* @param {Grid.view.Grid} event.grid Target grid
|
|
1864
1795
|
* @param {RowEditorContext} event.editorContext Editing context
|
|
@@ -1958,8 +1889,7 @@ export declare class BryntumGridBaseComponent implements OnInit, OnDestroy {
|
|
|
1958
1889
|
onGridRowDrop: any;
|
|
1959
1890
|
/**
|
|
1960
1891
|
* Fired when a grid header is clicked on.
|
|
1961
|
-
* ...
|
|
1962
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#event-headerClick)
|
|
1892
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#event-headerClick)
|
|
1963
1893
|
* @param {object} event Event object
|
|
1964
1894
|
* @param {Event} event.domEvent The triggering DOM event.
|
|
1965
1895
|
* @param {Grid.column.Column} event.column The column clicked on.
|
|
@@ -1968,8 +1898,7 @@ export declare class BryntumGridBaseComponent implements OnInit, OnDestroy {
|
|
|
1968
1898
|
/**
|
|
1969
1899
|
* This event fires on the owning Grid before the context menu is shown for a header.
|
|
1970
1900
|
* Allows manipulation of the items to show in the same way as in the [processItems](https://bryntum.com/products/grid/docs/api/Grid/feature/HeaderMenu#config-processItems).
|
|
1971
|
-
* ...
|
|
1972
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#event-headerMenuBeforeShow)
|
|
1901
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#event-headerMenuBeforeShow)
|
|
1973
1902
|
* @param {object} event Event object
|
|
1974
1903
|
* @param {Grid.view.Grid} event.source The grid
|
|
1975
1904
|
* @param {Core.widget.Menu} event.menu The menu
|
|
@@ -2032,8 +1961,7 @@ export declare class BryntumGridBaseComponent implements OnInit, OnDestroy {
|
|
|
2032
1961
|
/**
|
|
2033
1962
|
* Triggered when a widget which had been in a non-visible state for any reason
|
|
2034
1963
|
* achieves visibility.
|
|
2035
|
-
* ...
|
|
2036
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#event-paint)
|
|
1964
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#event-paint)
|
|
2037
1965
|
* @param {object} event Event object
|
|
2038
1966
|
* @param {Core.widget.Widget} event.source The widget being painted.
|
|
2039
1967
|
* @param {boolean} event.firstPaint `true` if this is the first paint.
|
|
@@ -2052,8 +1980,8 @@ export declare class BryntumGridBaseComponent implements OnInit, OnDestroy {
|
|
|
2052
1980
|
/**
|
|
2053
1981
|
* Fires on the owning Grid when export has finished
|
|
2054
1982
|
* @param {object} event Event object
|
|
2055
|
-
* @param {Response} event.response Optional response, if received
|
|
2056
|
-
* @param {Error} event.error Optional error, if exception occurred
|
|
1983
|
+
* @param {Response} [event.response] Optional response, if received
|
|
1984
|
+
* @param {Error} [event.error] Optional error, if exception occurred
|
|
2057
1985
|
*/
|
|
2058
1986
|
onPdfExport: any;
|
|
2059
1987
|
/**
|
|
@@ -2110,8 +2038,7 @@ export declare class BryntumGridBaseComponent implements OnInit, OnDestroy {
|
|
|
2110
2038
|
onRowCollapse: any;
|
|
2111
2039
|
/**
|
|
2112
2040
|
* This event fires when a row expand has finished expanding.
|
|
2113
|
-
* ...
|
|
2114
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#event-rowExpand)
|
|
2041
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#event-rowExpand)
|
|
2115
2042
|
* @param {object} event Event object
|
|
2116
2043
|
* @param {Core.data.Model} event.record Record
|
|
2117
2044
|
* @param {object} event.expandedElements An object with the Grid region name as property and the expanded body element as value
|
|
@@ -2249,7 +2176,7 @@ export declare class BryntumGridBaseComponent implements OnInit, OnDestroy {
|
|
|
2249
2176
|
* @param {Core.data.Model} event.groupRecord [DEPRECATED] Use `groupRecords` param instead
|
|
2250
2177
|
* @param {Core.data.Model[]} event.groupRecords The group records being toggled
|
|
2251
2178
|
* @param {boolean} event.collapse Collapsed (true) or expanded (false)
|
|
2252
|
-
* @param {boolean} event.allRecords True if this event is part of toggling all groups
|
|
2179
|
+
* @param {boolean} [event.allRecords] True if this event is part of toggling all groups
|
|
2253
2180
|
*/
|
|
2254
2181
|
onToggleGroup: any;
|
|
2255
2182
|
/**
|
|
@@ -2288,6 +2215,14 @@ export declare class BryntumGridBaseComponent implements OnInit, OnDestroy {
|
|
|
2288
2215
|
* Create and append the underlying widget
|
|
2289
2216
|
*/
|
|
2290
2217
|
ngOnInit(): void;
|
|
2218
|
+
/**
|
|
2219
|
+
* Extracts all @font-face declarations from a shadow root's stylesheets and adds them to
|
|
2220
|
+
* document.head as a single <style> element. This is needed because @font-face rules inside
|
|
2221
|
+
* a shadow root are not reliably included in document.fonts across all browsers, causing
|
|
2222
|
+
* Bryntum's CSS compatibility check to incorrectly report missing fonts.
|
|
2223
|
+
* Safe to call multiple times — the extraction runs only once per page.
|
|
2224
|
+
*/
|
|
2225
|
+
private static ensureFontsInDocument;
|
|
2291
2226
|
/**
|
|
2292
2227
|
* Watch for changes
|
|
2293
2228
|
* @param changes
|
|
@@ -2298,5 +2233,5 @@ export declare class BryntumGridBaseComponent implements OnInit, OnDestroy {
|
|
|
2298
2233
|
*/
|
|
2299
2234
|
ngOnDestroy(): void;
|
|
2300
2235
|
static ɵfac: i0.ɵɵFactoryDeclaration<BryntumGridBaseComponent, never>;
|
|
2301
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BryntumGridBaseComponent, "bryntum-grid-base", never, { "adopt": "adopt"; "animateFilterRemovals": "animateFilterRemovals"; "animateRemovingRows": "animateRemovingRows"; "ariaDescription": "ariaDescription"; "ariaLabel": "ariaLabel"; "autoHeight": "autoHeight"; "bbar": "bbar"; "bodyCls": "bodyCls"; "border": "border"; "bubbleEvents": "bubbleEvents"; "collapsible": "collapsible"; "color": "color"; "config": "config"; "contentElementCls": "contentElementCls"; "contextMenuTriggerEvent": "contextMenuTriggerEvent"; "dataField": "dataField"; "defaultRegion": "defaultRegion"; "destroyStore": "destroyStore"; "detectCSSCompatibilityIssues": "detectCSSCompatibilityIssues"; "disableGridColumnIdWarning": "disableGridColumnIdWarning"; "disableGridRowModelWarning": "disableGridRowModelWarning"; "dock": "dock"; "drawer": "drawer"; "elementAttributes": "elementAttributes"; "enableSticky": "enableSticky"; "enableTextSelection": "enableTextSelection"; "fillLastColumn": "fillLastColumn"; "fixedRowHeight": "fixedRowHeight"; "footer": "footer"; "formulaProviders": "formulaProviders"; "fullRowRefresh": "fullRowRefresh"; "getRowHeight": "getRowHeight"; "header": "header"; "hideHorizontalScrollbar": "hideHorizontalScrollbar"; "hoverCls": "hoverCls"; "icon": "icon"; "ignoreParentReadOnly": "ignoreParentReadOnly"; "listeners": "listeners"; "loadMask": "loadMask"; "loadMaskDefaults": "loadMaskDefaults"; "loadMaskError": "loadMaskError"; "localizable": "localizable"; "maskDefaults": "maskDefaults"; "masked": "masked"; "monitorResize": "monitorResize"; "plugins": "plugins"; "preserveFocusOnDatasetChange": "preserveFocusOnDatasetChange"; "preserveScrollOnDatasetChange": "preserveScrollOnDatasetChange"; "preventTooltipOnTouch": "preventTooltipOnTouch"; "relayStoreEvents": "relayStoreEvents"; "resizable": "resizable"; "resizeToFitIncludesHeader": "resizeToFitIncludesHeader"; "responsiveLevels": "responsiveLevels"; "ripple": "ripple"; "rootElement": "rootElement"; "scrollerClass": "scrollerClass"; "scrollManager": "scrollManager"; "showDirty": "showDirty"; "stateful": "stateful"; "statefulEvents": "statefulEvents"; "stateId": "stateId"; "stateProvider": "stateProvider"; "strips": "strips"; "subGridConfigs": "subGridConfigs"; "syncMask": "syncMask"; "tab": "tab"; "tabBarItems": "tabBarItems"; "tbar": "tbar"; "ui": "ui"; "weight": "weight"; "alignSelf": "alignSelf"; "animateTreeNodeToggle": "animateTreeNodeToggle"; "appendTo": "appendTo"; "callOnFunctions": "callOnFunctions"; "catchEventHandlerExceptions": "catchEventHandlerExceptions"; "cellEllipsis": "cellEllipsis"; "cls": "cls"; "collapsed": "collapsed"; "column": "column"; "columnLines": "columnLines"; "columns": "columns"; "data": "data"; "dataset": "dataset"; "disabled": "disabled"; "emptyText": "emptyText"; "enableUndoRedoKeys": "enableUndoRedoKeys"; "extraData": "extraData"; "flex": "flex"; "height": "height"; "hidden": "hidden"; "hideFooters": "hideFooters"; "hideHeaders": "hideHeaders"; "id": "id"; "inputFieldAlign": "inputFieldAlign"; "insertBefore": "insertBefore"; "insertFirst": "insertFirst"; "keyMap": "keyMap"; "labelPosition": "labelPosition"; "longPressTime": "longPressTime"; "margin": "margin"; "maxHeight": "maxHeight"; "maxWidth": "maxWidth"; "minHeight": "minHeight"; "minWidth": "minWidth"; "preserveScroll": "preserveScroll"; "readOnly": "readOnly"; "rendition": "rendition"; "rowHeight": "rowHeight"; "rowLines": "rowLines"; "rtl": "rtl"; "scrollable": "scrollable"; "selectionMode": "selectionMode"; "span": "span"; "stateSettings": "stateSettings"; "store": "store"; "title": "title"; "tools": "tools"; "transition": "transition"; "transitionDuration": "transitionDuration"; "width": "width"; "focusVisible": "focusVisible"; "hasChanges": "hasChanges"; "originalStore": "originalStore"; "parent": "parent"; "selectedCell": "selectedCell"; "selectedCells": "selectedCells"; "selectedRecord": "selectedRecord"; "selectedRecords": "selectedRecords"; "selectedRows": "selectedRows"; "state": "state"; "tooltip": "tooltip"; "aiFeature": "aiFeature"; "aiFilterFeature": "aiFilterFeature"; "cellCopyPasteFeature": "cellCopyPasteFeature"; "cellEditFeature": "cellEditFeature"; "cellMenuFeature": "cellMenuFeature"; "cellTooltipFeature": "cellTooltipFeature"; "chartsFeature": "chartsFeature"; "columnAutoWidthFeature": "columnAutoWidthFeature"; "columnDragToolbarFeature": "columnDragToolbarFeature"; "columnPickerFeature": "columnPickerFeature"; "columnRenameFeature": "columnRenameFeature"; "columnReorderFeature": "columnReorderFeature"; "columnResizeFeature": "columnResizeFeature"; "excelExporterFeature": "excelExporterFeature"; "fileDropFeature": "fileDropFeature"; "fillHandleFeature": "fillHandleFeature"; "filterFeature": "filterFeature"; "filterBarFeature": "filterBarFeature"; "groupFeature": "groupFeature"; "groupSummaryFeature": "groupSummaryFeature"; "headerMenuFeature": "headerMenuFeature"; "lockRowsFeature": "lockRowsFeature"; "mergeCellsFeature": "mergeCellsFeature"; "pdfExportFeature": "pdfExportFeature"; "pinColumnsFeature": "pinColumnsFeature"; "printFeature": "printFeature"; "quickFindFeature": "quickFindFeature"; "regionResizeFeature": "regionResizeFeature"; "rowCopyPasteFeature": "rowCopyPasteFeature"; "rowEditFeature": "rowEditFeature"; "rowExpanderFeature": "rowExpanderFeature"; "rowReorderFeature": "rowReorderFeature"; "rowResizeFeature": "rowResizeFeature"; "searchFeature": "searchFeature"; "sortFeature": "sortFeature"; "splitFeature": "splitFeature"; "stickyCellsFeature": "stickyCellsFeature"; "stripeFeature": "stripeFeature"; "summaryFeature": "summaryFeature"; "treeFeature": "treeFeature"; "treeGroupFeature": "treeGroupFeature"; }, { "onBeforeCancelCellEdit": "onBeforeCancelCellEdit"; "onBeforeCancelRowEdit": "onBeforeCancelRowEdit"; "onBeforeCellEditStart": "onBeforeCellEditStart"; "onBeforeCellRangeDelete": "onBeforeCellRangeDelete"; "onBeforeCellRangeEdit": "onBeforeCellRangeEdit"; "onBeforeColumnCollapseToggle": "onBeforeColumnCollapseToggle"; "onBeforeColumnDragStart": "onBeforeColumnDragStart"; "onBeforeColumnDropFinalize": "onBeforeColumnDropFinalize"; "onBeforeColumnResize": "onBeforeColumnResize"; "onBeforeCopy": "onBeforeCopy"; "onBeforeCSVExport": "onBeforeCSVExport"; "onBeforeDestroy": "onBeforeDestroy"; "onBeforeExcelExport": "onBeforeExcelExport"; "onBeforeFillHandleDragStart": "onBeforeFillHandleDragStart"; "onBeforeFinishCellEdit": "onBeforeFinishCellEdit"; "onBeforeFinishRowEdit": "onBeforeFinishRowEdit"; "onBeforeHide": "onBeforeHide"; "onBeforePaste": "onBeforePaste"; "onBeforePdfExport": "onBeforePdfExport"; "onBeforeRenderRow": "onBeforeRenderRow"; "onBeforeRenderRows": "onBeforeRenderRows"; "onBeforeRowCollapse": "onBeforeRowCollapse"; "onBeforeRowExpand": "onBeforeRowExpand"; "onBeforeSelectionChange": "onBeforeSelectionChange"; "onBeforeSetRecord": "onBeforeSetRecord"; "onBeforeShow": "onBeforeShow"; "onBeforeStartRowEdit": "onBeforeStartRowEdit"; "onBeforeStateApply": "onBeforeStateApply"; "onBeforeStateSave": "onBeforeStateSave"; "onBeforeToggleGroup": "onBeforeToggleGroup"; "onBeforeToggleNode": "onBeforeToggleNode"; "onCancelCellEdit": "onCancelCellEdit"; "onCatchAll": "onCatchAll"; "onCellClick": "onCellClick"; "onCellContextMenu": "onCellContextMenu"; "onCellDblClick": "onCellDblClick"; "onCellMenuBeforeShow": "onCellMenuBeforeShow"; "onCellMenuItem": "onCellMenuItem"; "onCellMenuShow": "onCellMenuShow"; "onCellMenuToggleItem": "onCellMenuToggleItem"; "onCellMouseEnter": "onCellMouseEnter"; "onCellMouseLeave": "onCellMouseLeave"; "onCellMouseOut": "onCellMouseOut"; "onCellMouseOver": "onCellMouseOver"; "onCollapse": "onCollapse"; "onCollapseNode": "onCollapseNode"; "onColumnCollapseToggle": "onColumnCollapseToggle"; "onColumnDrag": "onColumnDrag"; "onColumnDragStart": "onColumnDragStart"; "onColumnDrop": "onColumnDrop"; "onColumnResize": "onColumnResize"; "onColumnResizeStart": "onColumnResizeStart"; "onContextMenuItem": "onContextMenuItem"; "onContextMenuToggleItem": "onContextMenuToggleItem"; "onCopy": "onCopy"; "onDataChange": "onDataChange"; "onDestroy": "onDestroy"; "onDirtyStateChange": "onDirtyStateChange"; "onDragSelecting": "onDragSelecting"; "onElementCreated": "onElementCreated"; "onExpand": "onExpand"; "onExpandNode": "onExpandNode"; "onFileDrop": "onFileDrop"; "onFillHandleBeforeDragFinalize": "onFillHandleBeforeDragFinalize"; "onFillHandleDrag": "onFillHandleDrag"; "onFillHandleDragAbort": "onFillHandleDragAbort"; "onFillHandleDragEnd": "onFillHandleDragEnd"; "onFillHandleDragStart": "onFillHandleDragStart"; "onFinishCellEdit": "onFinishCellEdit"; "onFinishRowEdit": "onFinishRowEdit"; "onFocusIn": "onFocusIn"; "onFocusOut": "onFocusOut"; "onGridRowBeforeDragStart": "onGridRowBeforeDragStart"; "onGridRowBeforeDropFinalize": "onGridRowBeforeDropFinalize"; "onGridRowDrag": "onGridRowDrag"; "onGridRowDragAbort": "onGridRowDragAbort"; "onGridRowDragStart": "onGridRowDragStart"; "onGridRowDrop": "onGridRowDrop"; "onHeaderClick": "onHeaderClick"; "onHeaderMenuBeforeShow": "onHeaderMenuBeforeShow"; "onHeaderMenuItem": "onHeaderMenuItem"; "onHeaderMenuShow": "onHeaderMenuShow"; "onHeaderMenuToggleItem": "onHeaderMenuToggleItem"; "onHide": "onHide"; "onLockRows": "onLockRows"; "onMouseOut": "onMouseOut"; "onMouseOver": "onMouseOver"; "onPaint": "onPaint"; "onPaste": "onPaste"; "onPdfExport": "onPdfExport"; "onReadOnly": "onReadOnly"; "onRecompose": "onRecompose"; "onRenderRow": "onRenderRow"; "onRenderRows": "onRenderRows"; "onResize": "onResize"; "onResponsive": "onResponsive"; "onRowCollapse": "onRowCollapse"; "onRowExpand": "onRowExpand"; "onRowMouseEnter": "onRowMouseEnter"; "onRowMouseLeave": "onRowMouseLeave"; "onScroll": "onScroll"; "onSelectionChange": "onSelectionChange"; "onSelectionModeChange": "onSelectionModeChange"; "onShow": "onShow"; "onSplit": "onSplit"; "onSplitterCollapseClick": "onSplitterCollapseClick"; "onSplitterDragEnd": "onSplitterDragEnd"; "onSplitterDragStart": "onSplitterDragStart"; "onSplitterExpandClick": "onSplitterExpandClick"; "onStartCellEdit": "onStartCellEdit"; "onStartRowEdit": "onStartRowEdit"; "onSubGridCollapse": "onSubGridCollapse"; "onSubGridExpand": "onSubGridExpand"; "onToggleGroup": "onToggleGroup"; "onToggleNode": "onToggleNode"; "onToolClick": "onToolClick"; "onTreeGroup": "onTreeGroup"; "onUnlockRows": "onUnlockRows"; "onUnsplit": "onUnsplit"; }, never, never>;
|
|
2236
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BryntumGridBaseComponent, "bryntum-grid-base", never, { "adopt": "adopt"; "animateFilterRemovals": "animateFilterRemovals"; "animateRemovingRows": "animateRemovingRows"; "ariaDescription": "ariaDescription"; "ariaLabel": "ariaLabel"; "autoHeight": "autoHeight"; "bbar": "bbar"; "bodyCls": "bodyCls"; "border": "border"; "bubbleEvents": "bubbleEvents"; "collapsible": "collapsible"; "color": "color"; "config": "config"; "contentElementCls": "contentElementCls"; "contextMenuTriggerEvent": "contextMenuTriggerEvent"; "dataField": "dataField"; "defaultRegion": "defaultRegion"; "destroyStore": "destroyStore"; "detectCSSCompatibilityIssues": "detectCSSCompatibilityIssues"; "disableGridColumnIdWarning": "disableGridColumnIdWarning"; "disableGridRowModelWarning": "disableGridRowModelWarning"; "dock": "dock"; "drawer": "drawer"; "elementAttributes": "elementAttributes"; "enableSticky": "enableSticky"; "enableTextSelection": "enableTextSelection"; "fillLastColumn": "fillLastColumn"; "fixedRowHeight": "fixedRowHeight"; "footer": "footer"; "formulaProviders": "formulaProviders"; "fullRowRefresh": "fullRowRefresh"; "getRowHeight": "getRowHeight"; "header": "header"; "hideHorizontalScrollbar": "hideHorizontalScrollbar"; "hoverCls": "hoverCls"; "icon": "icon"; "ignoreParentReadOnly": "ignoreParentReadOnly"; "listeners": "listeners"; "loadMask": "loadMask"; "loadMaskDefaults": "loadMaskDefaults"; "loadMaskError": "loadMaskError"; "localizable": "localizable"; "maskDefaults": "maskDefaults"; "masked": "masked"; "monitorResize": "monitorResize"; "plugins": "plugins"; "preserveFocusOnDatasetChange": "preserveFocusOnDatasetChange"; "preserveScrollOnDatasetChange": "preserveScrollOnDatasetChange"; "preventTooltipOnTouch": "preventTooltipOnTouch"; "relayStoreEvents": "relayStoreEvents"; "resizable": "resizable"; "resizeToFitIncludesHeader": "resizeToFitIncludesHeader"; "responsiveLevels": "responsiveLevels"; "ripple": "ripple"; "role": "role"; "rootElement": "rootElement"; "scrollerClass": "scrollerClass"; "scrollManager": "scrollManager"; "showDirty": "showDirty"; "stateful": "stateful"; "statefulEvents": "statefulEvents"; "stateId": "stateId"; "stateProvider": "stateProvider"; "strips": "strips"; "subGridConfigs": "subGridConfigs"; "syncMask": "syncMask"; "tab": "tab"; "tabBarItems": "tabBarItems"; "tbar": "tbar"; "ui": "ui"; "weight": "weight"; "alignSelf": "alignSelf"; "animateTreeNodeToggle": "animateTreeNodeToggle"; "appendTo": "appendTo"; "callOnFunctions": "callOnFunctions"; "catchEventHandlerExceptions": "catchEventHandlerExceptions"; "cellEllipsis": "cellEllipsis"; "cls": "cls"; "collapsed": "collapsed"; "column": "column"; "columnLines": "columnLines"; "columns": "columns"; "data": "data"; "dataset": "dataset"; "disabled": "disabled"; "emptyText": "emptyText"; "enableUndoRedoKeys": "enableUndoRedoKeys"; "extraData": "extraData"; "flex": "flex"; "height": "height"; "hidden": "hidden"; "hideFooters": "hideFooters"; "hideHeaders": "hideHeaders"; "id": "id"; "inputFieldAlign": "inputFieldAlign"; "insertBefore": "insertBefore"; "insertFirst": "insertFirst"; "keyMap": "keyMap"; "labelPosition": "labelPosition"; "labelWidth": "labelWidth"; "longPressTime": "longPressTime"; "margin": "margin"; "maxHeight": "maxHeight"; "maxWidth": "maxWidth"; "minHeight": "minHeight"; "minWidth": "minWidth"; "preserveScroll": "preserveScroll"; "readOnly": "readOnly"; "rendition": "rendition"; "rowHeight": "rowHeight"; "rowLines": "rowLines"; "rtl": "rtl"; "scrollable": "scrollable"; "selectionMode": "selectionMode"; "span": "span"; "stateSettings": "stateSettings"; "store": "store"; "title": "title"; "tools": "tools"; "transition": "transition"; "transitionDuration": "transitionDuration"; "width": "width"; "originalStore": "originalStore"; "parent": "parent"; "selectedCell": "selectedCell"; "selectedCells": "selectedCells"; "selectedRecord": "selectedRecord"; "selectedRecords": "selectedRecords"; "selectedRows": "selectedRows"; "state": "state"; "tooltip": "tooltip"; "aiFeature": "aiFeature"; "aiFilterFeature": "aiFilterFeature"; "cellCopyPasteFeature": "cellCopyPasteFeature"; "cellEditFeature": "cellEditFeature"; "cellMenuFeature": "cellMenuFeature"; "cellTooltipFeature": "cellTooltipFeature"; "chartsFeature": "chartsFeature"; "columnAutoWidthFeature": "columnAutoWidthFeature"; "columnDragToolbarFeature": "columnDragToolbarFeature"; "columnPickerFeature": "columnPickerFeature"; "columnRenameFeature": "columnRenameFeature"; "columnReorderFeature": "columnReorderFeature"; "columnResizeFeature": "columnResizeFeature"; "excelExporterFeature": "excelExporterFeature"; "fileDropFeature": "fileDropFeature"; "fillHandleFeature": "fillHandleFeature"; "filterFeature": "filterFeature"; "filterBarFeature": "filterBarFeature"; "groupFeature": "groupFeature"; "groupSummaryFeature": "groupSummaryFeature"; "headerMenuFeature": "headerMenuFeature"; "lockRowsFeature": "lockRowsFeature"; "mergeCellsFeature": "mergeCellsFeature"; "pdfExportFeature": "pdfExportFeature"; "pinColumnsFeature": "pinColumnsFeature"; "printFeature": "printFeature"; "quickFindFeature": "quickFindFeature"; "regionResizeFeature": "regionResizeFeature"; "rowCopyPasteFeature": "rowCopyPasteFeature"; "rowEditFeature": "rowEditFeature"; "rowExpanderFeature": "rowExpanderFeature"; "rowReorderFeature": "rowReorderFeature"; "rowResizeFeature": "rowResizeFeature"; "searchFeature": "searchFeature"; "sortFeature": "sortFeature"; "splitFeature": "splitFeature"; "stickyCellsFeature": "stickyCellsFeature"; "stripeFeature": "stripeFeature"; "summaryFeature": "summaryFeature"; "treeFeature": "treeFeature"; "treeGroupFeature": "treeGroupFeature"; }, { "onBeforeCancelCellEdit": "onBeforeCancelCellEdit"; "onBeforeCancelRowEdit": "onBeforeCancelRowEdit"; "onBeforeCellEditStart": "onBeforeCellEditStart"; "onBeforeCellRangeDelete": "onBeforeCellRangeDelete"; "onBeforeCellRangeEdit": "onBeforeCellRangeEdit"; "onBeforeColumnCollapseToggle": "onBeforeColumnCollapseToggle"; "onBeforeColumnDragStart": "onBeforeColumnDragStart"; "onBeforeColumnDropFinalize": "onBeforeColumnDropFinalize"; "onBeforeColumnResize": "onBeforeColumnResize"; "onBeforeCopy": "onBeforeCopy"; "onBeforeCSVExport": "onBeforeCSVExport"; "onBeforeDestroy": "onBeforeDestroy"; "onBeforeExcelExport": "onBeforeExcelExport"; "onBeforeFillHandleDragStart": "onBeforeFillHandleDragStart"; "onBeforeFinishCellEdit": "onBeforeFinishCellEdit"; "onBeforeFinishRowEdit": "onBeforeFinishRowEdit"; "onBeforeHide": "onBeforeHide"; "onBeforePaste": "onBeforePaste"; "onBeforePdfExport": "onBeforePdfExport"; "onBeforeRenderRow": "onBeforeRenderRow"; "onBeforeRenderRows": "onBeforeRenderRows"; "onBeforeRowCollapse": "onBeforeRowCollapse"; "onBeforeRowExpand": "onBeforeRowExpand"; "onBeforeSelectionChange": "onBeforeSelectionChange"; "onBeforeSetRecord": "onBeforeSetRecord"; "onBeforeShow": "onBeforeShow"; "onBeforeStartRowEdit": "onBeforeStartRowEdit"; "onBeforeStateApply": "onBeforeStateApply"; "onBeforeStateSave": "onBeforeStateSave"; "onBeforeToggleGroup": "onBeforeToggleGroup"; "onBeforeToggleNode": "onBeforeToggleNode"; "onCancelCellEdit": "onCancelCellEdit"; "onCatchAll": "onCatchAll"; "onCellClick": "onCellClick"; "onCellContextMenu": "onCellContextMenu"; "onCellDblClick": "onCellDblClick"; "onCellMenuBeforeShow": "onCellMenuBeforeShow"; "onCellMenuItem": "onCellMenuItem"; "onCellMenuShow": "onCellMenuShow"; "onCellMenuToggleItem": "onCellMenuToggleItem"; "onCellMouseEnter": "onCellMouseEnter"; "onCellMouseLeave": "onCellMouseLeave"; "onCellMouseOut": "onCellMouseOut"; "onCellMouseOver": "onCellMouseOver"; "onCollapse": "onCollapse"; "onCollapseNode": "onCollapseNode"; "onColumnCollapseToggle": "onColumnCollapseToggle"; "onColumnDrag": "onColumnDrag"; "onColumnDragStart": "onColumnDragStart"; "onColumnDrop": "onColumnDrop"; "onColumnResize": "onColumnResize"; "onColumnResizeStart": "onColumnResizeStart"; "onContextMenuItem": "onContextMenuItem"; "onContextMenuToggleItem": "onContextMenuToggleItem"; "onCopy": "onCopy"; "onDataChange": "onDataChange"; "onDestroy": "onDestroy"; "onDirtyStateChange": "onDirtyStateChange"; "onDragSelecting": "onDragSelecting"; "onElementCreated": "onElementCreated"; "onExpand": "onExpand"; "onExpandNode": "onExpandNode"; "onFileDrop": "onFileDrop"; "onFillHandleBeforeDragFinalize": "onFillHandleBeforeDragFinalize"; "onFillHandleDrag": "onFillHandleDrag"; "onFillHandleDragAbort": "onFillHandleDragAbort"; "onFillHandleDragEnd": "onFillHandleDragEnd"; "onFillHandleDragStart": "onFillHandleDragStart"; "onFinishCellEdit": "onFinishCellEdit"; "onFinishRowEdit": "onFinishRowEdit"; "onFocusIn": "onFocusIn"; "onFocusOut": "onFocusOut"; "onGridRowBeforeDragStart": "onGridRowBeforeDragStart"; "onGridRowBeforeDropFinalize": "onGridRowBeforeDropFinalize"; "onGridRowDrag": "onGridRowDrag"; "onGridRowDragAbort": "onGridRowDragAbort"; "onGridRowDragStart": "onGridRowDragStart"; "onGridRowDrop": "onGridRowDrop"; "onHeaderClick": "onHeaderClick"; "onHeaderMenuBeforeShow": "onHeaderMenuBeforeShow"; "onHeaderMenuItem": "onHeaderMenuItem"; "onHeaderMenuShow": "onHeaderMenuShow"; "onHeaderMenuToggleItem": "onHeaderMenuToggleItem"; "onHide": "onHide"; "onLockRows": "onLockRows"; "onMouseOut": "onMouseOut"; "onMouseOver": "onMouseOver"; "onPaint": "onPaint"; "onPaste": "onPaste"; "onPdfExport": "onPdfExport"; "onReadOnly": "onReadOnly"; "onRecompose": "onRecompose"; "onRenderRow": "onRenderRow"; "onRenderRows": "onRenderRows"; "onResize": "onResize"; "onResponsive": "onResponsive"; "onRowCollapse": "onRowCollapse"; "onRowExpand": "onRowExpand"; "onRowMouseEnter": "onRowMouseEnter"; "onRowMouseLeave": "onRowMouseLeave"; "onScroll": "onScroll"; "onSelectionChange": "onSelectionChange"; "onSelectionModeChange": "onSelectionModeChange"; "onShow": "onShow"; "onSplit": "onSplit"; "onSplitterCollapseClick": "onSplitterCollapseClick"; "onSplitterDragEnd": "onSplitterDragEnd"; "onSplitterDragStart": "onSplitterDragStart"; "onSplitterExpandClick": "onSplitterExpandClick"; "onStartCellEdit": "onStartCellEdit"; "onStartRowEdit": "onStartRowEdit"; "onSubGridCollapse": "onSubGridCollapse"; "onSubGridExpand": "onSubGridExpand"; "onToggleGroup": "onToggleGroup"; "onToggleNode": "onToggleNode"; "onToolClick": "onToolClick"; "onTreeGroup": "onTreeGroup"; "onUnlockRows": "onUnlockRows"; "onUnsplit": "onUnsplit"; }, never, never>;
|
|
2302
2237
|
}
|