@bryntum/grid-angular-thin 7.2.3 → 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 Grid
|
|
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, Grid, GridColumnConfig, GridListeners, 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 BryntumGridProps = {
|
|
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/Grid#config-adopt)
|
|
12
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#config-adopt)
|
|
14
13
|
*/
|
|
15
14
|
adopt?: HTMLElement | string;
|
|
16
15
|
/**
|
|
@@ -45,15 +44,13 @@ export declare type BryntumGridProps = {
|
|
|
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/Grid#config-ariaDescription)
|
|
47
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#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/Grid#config-ariaLabel)
|
|
53
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#config-ariaLabel)
|
|
57
54
|
*/
|
|
58
55
|
ariaLabel?: string;
|
|
59
56
|
/**
|
|
@@ -65,14 +62,12 @@ export declare type BryntumGridProps = {
|
|
|
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/Grid#config-bbar)
|
|
65
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#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/Grid#config-bodyCls)
|
|
70
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#config-bodyCls)
|
|
76
71
|
*/
|
|
77
72
|
bodyCls?: string | object;
|
|
78
73
|
/**
|
|
@@ -82,21 +77,18 @@ export declare type BryntumGridProps = {
|
|
|
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/Grid#config-bubbleEvents)
|
|
80
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#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/Grid#config-callOnFunctions)
|
|
85
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#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/Grid#config-catchEventHandlerExceptions)
|
|
91
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#config-catchEventHandlerExceptions)
|
|
100
92
|
*/
|
|
101
93
|
catchEventHandlerExceptions?: boolean;
|
|
102
94
|
/**
|
|
@@ -109,8 +101,7 @@ export declare type BryntumGridProps = {
|
|
|
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/Grid#config-cls)
|
|
104
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#config-cls)
|
|
114
105
|
*/
|
|
115
106
|
cls?: string | object;
|
|
116
107
|
/**
|
|
@@ -120,15 +111,13 @@ export declare type BryntumGridProps = {
|
|
|
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/Grid#config-collapsible)
|
|
114
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#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/Grid#config-color)
|
|
120
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#config-color)
|
|
132
121
|
*/
|
|
133
122
|
color?: Color;
|
|
134
123
|
/**
|
|
@@ -142,8 +131,7 @@ export declare type BryntumGridProps = {
|
|
|
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/Grid#config-columns)
|
|
134
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#config-columns)
|
|
147
135
|
*/
|
|
148
136
|
columns?: ColumnStore | GridColumnConfig[] | ColumnStoreConfig;
|
|
149
137
|
config?: object;
|
|
@@ -151,8 +139,7 @@ export declare type BryntumGridProps = {
|
|
|
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/Grid#config-contentElementCls)
|
|
142
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#config-contentElementCls)
|
|
156
143
|
*/
|
|
157
144
|
contentElementCls?: string | object;
|
|
158
145
|
/**
|
|
@@ -164,8 +151,7 @@ export declare type BryntumGridProps = {
|
|
|
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/Grid#config-data)
|
|
154
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#config-data)
|
|
169
155
|
*/
|
|
170
156
|
data?: object[] | Model[] | ModelConfig[];
|
|
171
157
|
/**
|
|
@@ -186,16 +172,15 @@ export declare type BryntumGridProps = {
|
|
|
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/Grid#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/Grid#config-disabled)
|
|
183
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#config-disabled)
|
|
199
184
|
*/
|
|
200
185
|
disabled?: boolean | 'inert';
|
|
201
186
|
/**
|
|
@@ -215,28 +200,26 @@ export declare type BryntumGridProps = {
|
|
|
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/Grid#config-dock)
|
|
203
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#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/Grid#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 BryntumGridProps = {
|
|
|
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/Grid#config-elementAttributes)
|
|
232
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#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/Grid#config-emptyText)
|
|
239
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#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 BryntumGridProps = {
|
|
|
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/Grid#config-fixedRowHeight)
|
|
269
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#config-fixedRowHeight)
|
|
290
270
|
*/
|
|
291
271
|
fixedRowHeight?: boolean;
|
|
292
272
|
/**
|
|
@@ -300,43 +280,35 @@ export declare type BryntumGridProps = {
|
|
|
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/Grid#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/Grid#config-formulaProviders)
|
|
292
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#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/Grid#config-fullRowRefresh)
|
|
297
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#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/Grid#config-getRowHeight)
|
|
304
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#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/Grid#config-header)
|
|
311
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#config-header)
|
|
340
312
|
*/
|
|
341
313
|
header?: string | boolean | PanelHeader;
|
|
342
314
|
/**
|
|
@@ -376,16 +348,14 @@ export declare type BryntumGridProps = {
|
|
|
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/Grid#config-ignoreParentReadOnly)
|
|
351
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#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/Grid#config-inputFieldAlign)
|
|
358
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#config-inputFieldAlign)
|
|
389
359
|
*/
|
|
390
360
|
inputFieldAlign?: 'start' | 'end';
|
|
391
361
|
/**
|
|
@@ -402,14 +372,17 @@ export declare type BryntumGridProps = {
|
|
|
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/Grid#config-labelPosition)
|
|
375
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#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/Grid#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/Grid#config-listeners)
|
|
385
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#config-listeners)
|
|
413
386
|
*/
|
|
414
387
|
listeners?: GridListeners;
|
|
415
388
|
/**
|
|
@@ -422,15 +395,13 @@ export declare type BryntumGridProps = {
|
|
|
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/Grid#config-loadMaskDefaults)
|
|
398
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#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/Grid#config-loadMaskError)
|
|
404
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#config-loadMaskError)
|
|
434
405
|
*/
|
|
435
406
|
loadMaskError?: MaskConfig | Mask | boolean;
|
|
436
407
|
/**
|
|
@@ -468,8 +439,7 @@ export declare type BryntumGridProps = {
|
|
|
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/Grid#config-minHeight)
|
|
442
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#config-minHeight)
|
|
473
443
|
*/
|
|
474
444
|
minHeight?: string | number;
|
|
475
445
|
/**
|
|
@@ -484,7 +454,7 @@ export declare type BryntumGridProps = {
|
|
|
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 BryntumGridProps = {
|
|
|
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/Grid#config-readOnly)
|
|
479
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#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/Grid#config-rendition)
|
|
486
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#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/Grid#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 BryntumGridProps = {
|
|
|
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/Grid#config-responsiveLevels)
|
|
529
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#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/Grid#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/Grid#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 BryntumGridProps = {
|
|
|
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/Grid#config-rowHeight)
|
|
557
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#config-rowHeight)
|
|
567
558
|
*/
|
|
568
559
|
rowHeight?: number;
|
|
569
560
|
/**
|
|
@@ -572,15 +563,13 @@ export declare type BryntumGridProps = {
|
|
|
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/Grid#config-rtl)
|
|
566
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#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/Grid#config-scrollable)
|
|
572
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#config-scrollable)
|
|
584
573
|
*/
|
|
585
574
|
scrollable?: boolean | ScrollerConfig | Scroller;
|
|
586
575
|
/**
|
|
@@ -595,19 +584,19 @@ export declare type BryntumGridProps = {
|
|
|
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/Grid#config-selectionMode)
|
|
587
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#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/Grid#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 BryntumGridProps = {
|
|
|
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/Grid#config-stateful)
|
|
607
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#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/Grid#config-statefulEvents)
|
|
613
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#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/Grid#config-stateId)
|
|
620
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#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/Grid#config-stateProvider)
|
|
626
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#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/Grid#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/Grid#config-store)
|
|
638
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#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/Grid#config-strips)
|
|
645
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#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/Grid#config-subGridConfigs)
|
|
652
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#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/Grid#config-syncMask)
|
|
658
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#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/Grid#config-tab)
|
|
665
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#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/Grid#config-tabBarItems)
|
|
671
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#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/Grid#config-tbar)
|
|
678
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#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/Grid#config-title)
|
|
684
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#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/Grid#config-tools)
|
|
691
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#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
|
*/
|
|
@@ -739,8 +712,7 @@ export declare type BryntumGridProps = {
|
|
|
739
712
|
* Custom CSS class name suffixes to apply to the elements rendered by this widget. This may be specified
|
|
740
713
|
* as a space separated string, an array of strings, or as an object in which property names with truthy
|
|
741
714
|
* values are used as the class names.
|
|
742
|
-
* ...
|
|
743
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#config-ui)
|
|
715
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#config-ui)
|
|
744
716
|
*/
|
|
745
717
|
ui?: 'plain' | 'toolbar' | string | object;
|
|
746
718
|
/**
|
|
@@ -759,129 +731,117 @@ export declare type BryntumGridProps = {
|
|
|
759
731
|
* agent and see the responses. Which allows the user to use natural language to interact with the Grid in different
|
|
760
732
|
* ways. For example, the user can ask the agent to filter the data, sort it, or select specific records. The agent can
|
|
761
733
|
* also perform data manipulation operations such as adding, updating, deleting records.
|
|
762
|
-
* ...
|
|
763
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/feature/AI)
|
|
734
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/AI)
|
|
764
735
|
*/
|
|
765
736
|
aiFeature?: object | boolean | string | AI | AIConfig;
|
|
766
737
|
/**
|
|
767
738
|
* AI-powered filter feature for Grid. Allows users to type natural language queries to filter grid data.
|
|
768
|
-
* ...
|
|
769
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/feature/ai/AIFilter)
|
|
739
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/ai/AIFilter)
|
|
770
740
|
*/
|
|
771
741
|
aiFilterFeature?: object | boolean | string | AIFilter | AIFilterConfig;
|
|
772
742
|
/**
|
|
773
743
|
* Allows using `[Ctrl/CMD + C]`, `[Ctrl/CMD + X]` and `[Ctrl/CMD + V]` to cut, copy and paste cell or cell ranges. Also
|
|
774
744
|
* makes cut, copy and paste actions available via the cell context menu.
|
|
775
|
-
* ...
|
|
776
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/feature/CellCopyPaste)
|
|
745
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/CellCopyPaste)
|
|
777
746
|
*/
|
|
778
747
|
cellCopyPasteFeature?: object | boolean | string | CellCopyPaste | CellCopyPasteConfig;
|
|
779
748
|
/**
|
|
780
749
|
* Adding this feature to the grid and other Bryntum products which are based on the Grid (i.e. Scheduler, SchedulerPro, and Gantt)
|
|
781
750
|
* enables cell editing. Any subclass of [Field](https://bryntum.com/products/grid/docs/api/Core/widget/Field) can be used
|
|
782
751
|
* as editor for the [Column](https://bryntum.com/products/grid/docs/api/Grid/column/Column). The most popular are:
|
|
783
|
-
* ...
|
|
784
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/feature/CellEdit)
|
|
752
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/CellEdit)
|
|
785
753
|
*/
|
|
786
754
|
cellEditFeature?: object | boolean | string | CellEdit | CellEditConfig;
|
|
787
755
|
/**
|
|
788
756
|
* Right click to display context menu for cells. To invoke the cell menu in a keyboard-accessible manner, use the
|
|
789
757
|
* <kbd>Space</kbd> key when the cell is focused.
|
|
790
|
-
* ...
|
|
791
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/feature/CellMenu)
|
|
758
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/CellMenu)
|
|
792
759
|
*/
|
|
793
760
|
cellMenuFeature?: object | boolean | string | CellMenu | CellMenuConfig;
|
|
794
761
|
/**
|
|
795
762
|
* Displays a tooltip when hovering cells.
|
|
796
|
-
* ...
|
|
797
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/feature/CellTooltip)
|
|
763
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/CellTooltip)
|
|
798
764
|
*/
|
|
799
765
|
cellTooltipFeature?: object | boolean | string | CellTooltip | CellTooltipConfig;
|
|
800
766
|
/**
|
|
801
767
|
* 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
|
|
802
768
|
* and updated in realtime as data changes. Supports many common chart types with extensive styling and customization
|
|
803
769
|
* options.
|
|
804
|
-
* ...
|
|
805
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/feature/Charts)
|
|
770
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/Charts)
|
|
806
771
|
*/
|
|
807
772
|
chartsFeature?: object | boolean | string | Charts | ChartsConfig;
|
|
808
773
|
/**
|
|
809
|
-
* Enables the [autoWidth](https://bryntum.com/products/grid/docs/api/Grid/column/Column#config-autoWidth) config for a grid's columns.
|
|
810
|
-
*
|
|
811
|
-
*
|
|
774
|
+
* Enables the [autoWidth](https://bryntum.com/products/grid/docs/api/Grid/column/Column#config-autoWidth) config for a grid's columns. When a column
|
|
775
|
+
* has `autoWidth` set, this feature measures the rendered content of all visible cells in that column
|
|
776
|
+
* and adjusts the column width to fit. The measurement is triggered automatically when data changes
|
|
777
|
+
* or rows are rendered.
|
|
778
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/ColumnAutoWidth)
|
|
812
779
|
*/
|
|
813
780
|
columnAutoWidthFeature?: object | boolean | string | ColumnAutoWidth | ColumnAutoWidthConfig;
|
|
814
781
|
/**
|
|
815
782
|
* Displays a toolbar while dragging column headers. Drop on a button in the toolbar to activate a certain function,
|
|
816
783
|
* for example to group by that column. This feature simplifies certain operations on touch devices.
|
|
817
|
-
* ...
|
|
818
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/feature/ColumnDragToolbar)
|
|
784
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/ColumnDragToolbar)
|
|
819
785
|
*/
|
|
820
786
|
columnDragToolbarFeature?: object | boolean | string | ColumnDragToolbar | ColumnDragToolbarConfig;
|
|
821
787
|
/**
|
|
822
788
|
* Displays a column picker (to show/hide columns) in the header context menu. Columns can be displayed in sub menus
|
|
823
789
|
* by region or tag. Grouped headers are displayed as menu hierarchies.
|
|
824
|
-
* ...
|
|
825
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/feature/ColumnPicker)
|
|
790
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/ColumnPicker)
|
|
826
791
|
*/
|
|
827
792
|
columnPickerFeature?: object | boolean | string | ColumnPicker | ColumnPickerConfig;
|
|
828
793
|
/**
|
|
829
794
|
* Allows user to rename columns by either right-clicking column header or using keyboard shortcuts when column header
|
|
830
795
|
* is focused.
|
|
831
|
-
* ...
|
|
832
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/feature/ColumnRename)
|
|
796
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/ColumnRename)
|
|
833
797
|
*/
|
|
834
798
|
columnRenameFeature?: object | boolean | string | ColumnRename | ColumnRenameConfig;
|
|
835
799
|
/**
|
|
836
|
-
* Allows user to reorder columns by dragging headers.
|
|
837
|
-
*
|
|
838
|
-
*
|
|
839
|
-
* [
|
|
800
|
+
* Allows user to reorder columns by dragging headers. Click and drag a column header to move it to a new position.
|
|
801
|
+
* Visual feedback shows the drop target while dragging. To get notified about column reorder, listen to the
|
|
802
|
+
* `change` event on the [columns](https://bryntum.com/products/grid/docs/api/Grid/data/ColumnStore) store.
|
|
803
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/ColumnReorder)
|
|
840
804
|
*/
|
|
841
805
|
columnReorderFeature?: object | boolean | string | ColumnReorder | ColumnReorderConfig;
|
|
842
806
|
/**
|
|
843
|
-
* Enables user to resize columns by dragging a handle on the right hand side of the header.
|
|
844
|
-
*
|
|
845
|
-
*
|
|
846
|
-
* [
|
|
807
|
+
* Enables user to resize columns by dragging a handle on the right hand side of the header. A drag handle
|
|
808
|
+
* appears when hovering near the right edge of a column header. Dragging it adjusts the column width, respecting
|
|
809
|
+
* any [minWidth](https://bryntum.com/products/grid/docs/api/Grid/column/Column#config-minWidth) or [maxWidth](#Grid/column/Column#config-maxWidth) constraints.
|
|
810
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/ColumnResize)
|
|
847
811
|
*/
|
|
848
812
|
columnResizeFeature?: object | boolean | string | ColumnResize | ColumnResizeConfig;
|
|
849
813
|
/**
|
|
850
814
|
* A feature that allows exporting Grid data to Excel or CSV without involving the server. It uses
|
|
851
815
|
* [TableExporter](https://bryntum.com/products/grid/docs/api/Grid/util/TableExporter) class as data provider, 3rd party provider to generate XLS files, and
|
|
852
816
|
* [Microsoft XML specification](https://msdn.microsoft.com/en-us/library/office/documentformat.openxml.spreadsheet.aspx).
|
|
853
|
-
* ...
|
|
854
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/feature/experimental/ExcelExporter)
|
|
817
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/experimental/ExcelExporter)
|
|
855
818
|
*/
|
|
856
819
|
excelExporterFeature?: object | boolean | string | ExcelExporter | ExcelExporterConfig;
|
|
857
820
|
/**
|
|
858
|
-
* An experimental feature that lets users drop files on a Widget. The widget fires
|
|
859
|
-
* In the event, you get access to the raw
|
|
860
|
-
*
|
|
861
|
-
* [
|
|
821
|
+
* An experimental feature that lets users drop files on a Widget. The widget fires a
|
|
822
|
+
* [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
|
|
823
|
+
* files as strings, that were parsed by calling `readAsBinaryString`.
|
|
824
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/experimental/FileDrop)
|
|
862
825
|
*/
|
|
863
826
|
fileDropFeature?: object | boolean | string | FileDrop | FileDropConfig;
|
|
864
827
|
/**
|
|
865
828
|
* This feature adds a fill handle to a Grid range selection, which when dragged, fills the cells being dragged over
|
|
866
829
|
* with values based on the values in the original selected range. This is similar to functionality normally seen in
|
|
867
830
|
* various spreadsheet applications.
|
|
868
|
-
* ...
|
|
869
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/feature/FillHandle)
|
|
831
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/FillHandle)
|
|
870
832
|
*/
|
|
871
833
|
fillHandleFeature?: object | boolean | string | FillHandle | FillHandleConfig;
|
|
872
834
|
/**
|
|
873
835
|
* Feature that allows filtering of the grid by settings filters on columns. The actual filtering is done by the store.
|
|
874
836
|
* For info on programmatically handling filters, see [StoreFilter](https://bryntum.com/products/grid/docs/api/Core/data/mixin/StoreFilter).
|
|
875
|
-
* ...
|
|
876
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/feature/Filter)
|
|
837
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/Filter)
|
|
877
838
|
*/
|
|
878
839
|
filterFeature?: object | boolean | string | Filter | FilterConfig;
|
|
879
840
|
/**
|
|
880
841
|
* Feature that allows filtering of the grid by entering filters on column headers.
|
|
881
842
|
* The actual filtering is done by the store.
|
|
882
843
|
* For info on programmatically handling filters, see [StoreFilter](https://bryntum.com/products/grid/docs/api/Core/data/mixin/StoreFilter).
|
|
883
|
-
* ...
|
|
884
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/feature/FilterBar)
|
|
844
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/FilterBar)
|
|
885
845
|
*/
|
|
886
846
|
filterBarFeature?: object | boolean | string | FilterBar | FilterBarConfig;
|
|
887
847
|
/**
|
|
@@ -889,141 +849,124 @@ export declare type BryntumGridProps = {
|
|
|
889
849
|
* <kbd>Shift</kbd> + clicking headers, or by using the context menu, or by using two finger tap (one on header,
|
|
890
850
|
* one anywhere on grid). Use <kbd>Shift</kbd> + <kbd>Alt</kbd> + click, or the context menu, to remove a column
|
|
891
851
|
* grouper.
|
|
892
|
-
* ...
|
|
893
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/feature/Group)
|
|
852
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/Group)
|
|
894
853
|
*/
|
|
895
854
|
groupFeature?: object | boolean | string | Group | GroupConfig;
|
|
896
855
|
/**
|
|
897
856
|
* Displays a summary row as a group footer in a grouped grid. Uses the same configuration options on columns as
|
|
898
857
|
* [Summary](https://bryntum.com/products/grid/docs/api/Grid/feature/Summary).
|
|
899
|
-
* ...
|
|
900
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/feature/GroupSummary)
|
|
858
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/GroupSummary)
|
|
901
859
|
*/
|
|
902
860
|
groupSummaryFeature?: object | boolean | string | GroupSummary | GroupSummaryConfig;
|
|
903
861
|
/**
|
|
904
862
|
* Right click column header or focus it and press SPACE key to show the context menu for headers.
|
|
905
|
-
* ...
|
|
906
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/feature/HeaderMenu)
|
|
863
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/HeaderMenu)
|
|
907
864
|
*/
|
|
908
865
|
headerMenuFeature?: object | boolean | string | HeaderMenu | HeaderMenuConfig;
|
|
909
866
|
/**
|
|
910
867
|
* This feature allows records which satisfy a certain condition to be locked at the top of the grid.
|
|
911
|
-
* ...
|
|
912
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/feature/LockRows)
|
|
868
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/LockRows)
|
|
913
869
|
*/
|
|
914
870
|
lockRowsFeature?: object | boolean | string | LockRows | LockRowsConfig;
|
|
915
871
|
/**
|
|
916
872
|
* 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
|
|
917
873
|
* configured to [mergeCells](https://bryntum.com/products/grid/docs/api/Grid/column/Column#config-mergeCells).
|
|
918
|
-
* ...
|
|
919
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/feature/MergeCells)
|
|
874
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/MergeCells)
|
|
920
875
|
*/
|
|
921
876
|
mergeCellsFeature?: object | boolean | string | MergeCells | MergeCellsConfig;
|
|
922
877
|
/**
|
|
923
878
|
* Generates PDF/PNG files from the Grid component.
|
|
924
|
-
* ...
|
|
925
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/feature/export/PdfExport)
|
|
879
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/export/PdfExport)
|
|
926
880
|
*/
|
|
927
881
|
pdfExportFeature?: object | boolean | string | PdfExport | PdfExportConfig;
|
|
928
882
|
/**
|
|
929
883
|
* Allows pinning columns to the start or end region of the grid without any additional subGrid configurations.
|
|
930
884
|
* When pinning to a region that does not yet exist, the feature creates the required subGrid on the fly.
|
|
931
|
-
* ...
|
|
932
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/feature/PinColumns)
|
|
885
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/PinColumns)
|
|
933
886
|
*/
|
|
934
887
|
pinColumnsFeature?: object | boolean | string | PinColumns | PinColumnsConfig;
|
|
935
888
|
/**
|
|
936
889
|
* Allows printing Grid contents using browser print dialog.
|
|
937
|
-
* ...
|
|
938
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/feature/export/Print)
|
|
890
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/export/Print)
|
|
939
891
|
*/
|
|
940
892
|
printFeature?: object | boolean | string | Print | PrintConfig;
|
|
941
893
|
/**
|
|
942
894
|
* Feature that allows the user to search in a column by focusing a cell and typing. Navigate between hits using the
|
|
943
|
-
* keyboard,
|
|
944
|
-
*
|
|
945
|
-
* [
|
|
895
|
+
* keyboard, <kbd>f3</kbd> or <kbd>ctrl</kbd>/<kbd>cmd</kbd> + <kbd>g</kbd> moves to next, also pressing
|
|
896
|
+
* <kbd>shift</kbd> moves to previous.
|
|
897
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/QuickFind)
|
|
946
898
|
*/
|
|
947
899
|
quickFindFeature?: object | boolean | string | QuickFind | QuickFindConfig;
|
|
948
900
|
/**
|
|
949
901
|
* Makes the splitter between grid [sections](https://bryntum.com/products/grid/docs/api/Grid/view/SubGrid) draggable, to let users resize, and
|
|
950
902
|
* collapse/expand the sections.
|
|
951
|
-
* ...
|
|
952
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/feature/RegionResize)
|
|
903
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/RegionResize)
|
|
953
904
|
*/
|
|
954
905
|
regionResizeFeature?: object | boolean | string | RegionResize | RegionResizeConfig;
|
|
955
906
|
/**
|
|
956
907
|
* Allow using [Ctrl/CMD + C/X] and [Ctrl/CMD + V] to copy/cut-and-paste rows. Also makes cut, copy and paste actions
|
|
957
908
|
* available via the cell context menu.
|
|
958
|
-
* ...
|
|
959
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/feature/RowCopyPaste)
|
|
909
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/RowCopyPaste)
|
|
960
910
|
*/
|
|
961
911
|
rowCopyPasteFeature?: object | boolean | string | RowCopyPaste | RowCopyPasteConfig;
|
|
962
912
|
/**
|
|
963
913
|
* This feature allows editing of entire rows in a grid in a docked panel which by default slides out from the right.
|
|
964
|
-
* ...
|
|
965
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/feature/RowEdit)
|
|
914
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/RowEdit)
|
|
966
915
|
*/
|
|
967
916
|
rowEditFeature?: object | boolean | string | RowEdit | RowEditConfig;
|
|
968
917
|
/**
|
|
969
918
|
* Enables expanding of Grid rows by either row click or double click, or by adding a separate Grid column which renders
|
|
970
919
|
* a button that expands or collapses the row.
|
|
971
|
-
* ...
|
|
972
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/feature/RowExpander)
|
|
920
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/RowExpander)
|
|
973
921
|
*/
|
|
974
922
|
rowExpanderFeature?: object | boolean | string | RowExpander | RowExpanderConfig;
|
|
975
923
|
/**
|
|
976
924
|
* Allows user to reorder rows by dragging them. To get notified about row reorder listen to `change` event
|
|
977
925
|
* on the grid [store](https://bryntum.com/products/grid/docs/api/Core/data/Store).
|
|
978
|
-
* ...
|
|
979
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/feature/RowReorder)
|
|
926
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/RowReorder)
|
|
980
927
|
*/
|
|
981
928
|
rowReorderFeature?: object | boolean | string | RowReorder | RowReorderConfig;
|
|
982
929
|
/**
|
|
983
930
|
* 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)
|
|
984
931
|
* field of the record is updated (when [applyToAllRows](https://bryntum.com/products/grid/docs/api/Grid/feature/RowResize#config-applyToAllRows) is `false`).
|
|
985
|
-
* ...
|
|
986
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/feature/RowResize)
|
|
932
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/RowResize)
|
|
987
933
|
*/
|
|
988
934
|
rowResizeFeature?: object | boolean | string | RowResize | RowResizeConfig;
|
|
989
935
|
/**
|
|
990
936
|
* <div class="external-example vertical" data-file="Grid/feature/Search.js"></div>
|
|
991
|
-
* ...
|
|
992
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/feature/Search)
|
|
937
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/Search)
|
|
993
938
|
*/
|
|
994
939
|
searchFeature?: object | boolean | string | Search | SearchConfig;
|
|
995
940
|
/**
|
|
996
941
|
* Allows sorting of grid by clicking (or tapping) headers, also displays which columns grid is sorted by (numbered if
|
|
997
942
|
* using multisort). Use modifier keys for multisorting: [Ctrl/CMD + click] to add sorter, [Ctrl/CMD + Alt + click] to remove sorter.
|
|
998
943
|
* The actual sorting is done by the store, see [Store.sort()](https://bryntum.com/products/grid/docs/api/Core/data/mixin/StoreSort#function-sort).
|
|
999
|
-
* ...
|
|
1000
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/feature/Sort)
|
|
944
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/Sort)
|
|
1001
945
|
*/
|
|
1002
946
|
sortFeature?: object | boolean | string | Sort | SortConfig;
|
|
1003
947
|
/**
|
|
1004
948
|
* This feature allows splitting the Grid into multiple views, either by using the cell context menu, or
|
|
1005
949
|
* programmatically by calling [split()](https://bryntum.com/products/grid/docs/api/Grid/feature/Split#function-split).
|
|
1006
|
-
* ...
|
|
1007
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/feature/Split)
|
|
950
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/Split)
|
|
1008
951
|
*/
|
|
1009
952
|
splitFeature?: object | boolean | string | Split | SplitConfig;
|
|
1010
953
|
/**
|
|
1011
|
-
* A feature which pins
|
|
1012
|
-
*
|
|
1013
|
-
*
|
|
1014
|
-
* [
|
|
954
|
+
* A feature which pins cell content to the top of the grid while the row scrolls off the top but is still visible. Very
|
|
955
|
+
* similar to native `position: sticky`, which because of Grid's multiple-region setup unfortunately cannot be used to
|
|
956
|
+
* achieve the same effect.
|
|
957
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/StickyCells)
|
|
1015
958
|
*/
|
|
1016
959
|
stickyCellsFeature?: object | boolean | string | StickyCells | StickyCellsConfig;
|
|
1017
960
|
/**
|
|
1018
961
|
* Stripes rows by adding alternating CSS classes to all row elements (`b-even` and `b-odd`).
|
|
1019
|
-
*
|
|
1020
|
-
*
|
|
962
|
+
* This improves visual readability in data-heavy grids by giving adjacent rows different background colors.
|
|
963
|
+
* Style the striped rows using the `.b-even` and `.b-odd` CSS classes.
|
|
964
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/Stripe)
|
|
1021
965
|
*/
|
|
1022
966
|
stripeFeature?: object | boolean | string | Stripe | StripeConfig;
|
|
1023
967
|
/**
|
|
1024
968
|
* Displays a summary row in the grid footer.
|
|
1025
|
-
* ...
|
|
1026
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/feature/Summary)
|
|
969
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/Summary)
|
|
1027
970
|
*/
|
|
1028
971
|
summaryFeature?: object | boolean | string | Summary | SummaryConfig;
|
|
1029
972
|
/**
|
|
@@ -1031,15 +974,13 @@ export declare type BryntumGridProps = {
|
|
|
1031
974
|
* 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
|
|
1032
975
|
* tree renderer that adds padding and icon to give the appearance of a tree. The original renderer is preserved and
|
|
1033
976
|
* also called.
|
|
1034
|
-
* ...
|
|
1035
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/feature/Tree)
|
|
977
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/Tree)
|
|
1036
978
|
*/
|
|
1037
979
|
treeFeature?: object | boolean | string | Tree | TreeConfig;
|
|
1038
980
|
/**
|
|
1039
981
|
* A feature that allows transforming a flat dataset (or the leaves of a hierarchical) into a tree by specifying a
|
|
1040
982
|
* record field per parent level. Parents are generated based on each leaf's value for those fields.
|
|
1041
|
-
* ...
|
|
1042
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/feature/TreeGroup)
|
|
983
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/TreeGroup)
|
|
1043
984
|
*/
|
|
1044
985
|
treeGroupFeature?: object | boolean | string | TreeGroup | TreeGroupConfig;
|
|
1045
986
|
};
|
|
@@ -1081,7 +1022,7 @@ export declare class BryntumGridComponent implements OnInit, OnDestroy {
|
|
|
1081
1022
|
side?: 'start' | 'left' | 'end' | 'right' | 'top' | 'bottom';
|
|
1082
1023
|
size?: string | number;
|
|
1083
1024
|
inline?: boolean;
|
|
1084
|
-
autoClose
|
|
1025
|
+
autoClose?: boolean | {
|
|
1085
1026
|
mousedown?: boolean | string;
|
|
1086
1027
|
focusout?: boolean | string;
|
|
1087
1028
|
mouseout?: string;
|
|
@@ -1093,16 +1034,10 @@ export declare class BryntumGridComponent implements OnInit, OnDestroy {
|
|
|
1093
1034
|
enableTextSelection: boolean;
|
|
1094
1035
|
fillLastColumn: boolean;
|
|
1095
1036
|
fixedRowHeight: boolean;
|
|
1096
|
-
footer:
|
|
1097
|
-
dock?: 'top' | 'right' | 'bottom' | 'left' | 'start' | 'end';
|
|
1098
|
-
html?: string;
|
|
1099
|
-
cls?: string;
|
|
1100
|
-
} | string;
|
|
1037
|
+
footer: object | string;
|
|
1101
1038
|
formulaProviders: Record<string, FormulaProviderConfig>;
|
|
1102
1039
|
fullRowRefresh: boolean;
|
|
1103
|
-
getRowHeight: (
|
|
1104
|
-
record: Model;
|
|
1105
|
-
}) => number;
|
|
1040
|
+
getRowHeight: () => number;
|
|
1106
1041
|
header: string | boolean | PanelHeader;
|
|
1107
1042
|
hideHorizontalScrollbar: boolean;
|
|
1108
1043
|
hoverCls: string;
|
|
@@ -1116,7 +1051,7 @@ export declare class BryntumGridComponent implements OnInit, OnDestroy {
|
|
|
1116
1051
|
maskDefaults: MaskConfig;
|
|
1117
1052
|
masked: boolean | string | MaskConfig;
|
|
1118
1053
|
monitorResize: boolean;
|
|
1119
|
-
plugins:
|
|
1054
|
+
plugins: InstancePlugin[] | InstancePlugin;
|
|
1120
1055
|
preserveFocusOnDatasetChange: boolean;
|
|
1121
1056
|
preserveScrollOnDatasetChange: boolean;
|
|
1122
1057
|
preventTooltipOnTouch: boolean;
|
|
@@ -1126,22 +1061,27 @@ export declare class BryntumGridComponent implements OnInit, OnDestroy {
|
|
|
1126
1061
|
maxWidth?: number;
|
|
1127
1062
|
minHeight?: number;
|
|
1128
1063
|
maxHeight?: number;
|
|
1129
|
-
handles?:
|
|
1064
|
+
handles?: {
|
|
1065
|
+
topStart?: boolean;
|
|
1066
|
+
top?: boolean;
|
|
1067
|
+
topEnd?: boolean;
|
|
1068
|
+
end?: boolean;
|
|
1069
|
+
bottomEnd?: boolean;
|
|
1070
|
+
bottom?: boolean;
|
|
1071
|
+
bottomStart?: boolean;
|
|
1072
|
+
start?: boolean;
|
|
1073
|
+
};
|
|
1130
1074
|
};
|
|
1131
1075
|
resizeToFitIncludesHeader: boolean;
|
|
1132
1076
|
responsiveLevels: Record<string, number | string | ResponsiveLevelConfig>;
|
|
1133
|
-
ripple: boolean |
|
|
1134
|
-
|
|
1135
|
-
color?: string;
|
|
1136
|
-
radius?: number;
|
|
1137
|
-
clip?: string;
|
|
1138
|
-
};
|
|
1077
|
+
ripple: boolean | object;
|
|
1078
|
+
role: string;
|
|
1139
1079
|
rootElement: ShadowRoot | HTMLElement;
|
|
1140
1080
|
scrollerClass: typeof Scroller;
|
|
1141
1081
|
scrollManager: ScrollManagerConfig | ScrollManager;
|
|
1142
1082
|
showDirty: boolean | {
|
|
1143
|
-
duringEdit
|
|
1144
|
-
newRecord
|
|
1083
|
+
duringEdit: boolean;
|
|
1084
|
+
newRecord: boolean;
|
|
1145
1085
|
};
|
|
1146
1086
|
stateful: boolean | object | string[];
|
|
1147
1087
|
statefulEvents: object | string[];
|
|
@@ -1184,6 +1124,7 @@ export declare class BryntumGridComponent implements OnInit, OnDestroy {
|
|
|
1184
1124
|
insertFirst: HTMLElement | string;
|
|
1185
1125
|
keyMap: Record<string, KeyMapConfig>;
|
|
1186
1126
|
labelPosition: 'before' | 'above' | 'align-before' | 'auto' | null;
|
|
1127
|
+
labelWidth: number | null;
|
|
1187
1128
|
longPressTime: number;
|
|
1188
1129
|
margin: number | string;
|
|
1189
1130
|
maxHeight: string | number;
|
|
@@ -1217,8 +1158,6 @@ export declare class BryntumGridComponent implements OnInit, OnDestroy {
|
|
|
1217
1158
|
};
|
|
1218
1159
|
transitionDuration: number;
|
|
1219
1160
|
width: number | string;
|
|
1220
|
-
focusVisible: boolean;
|
|
1221
|
-
hasChanges: boolean;
|
|
1222
1161
|
originalStore: Store;
|
|
1223
1162
|
parent: Widget;
|
|
1224
1163
|
selectedCell: GridLocation | GridLocationConfig;
|
|
@@ -1278,8 +1217,7 @@ export declare class BryntumGridComponent implements OnInit, OnDestroy {
|
|
|
1278
1217
|
onBeforeCancelCellEdit: any;
|
|
1279
1218
|
/**
|
|
1280
1219
|
* 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.
|
|
1281
|
-
* ...
|
|
1282
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#event-beforeCancelRowEdit)
|
|
1220
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#event-beforeCancelRowEdit)
|
|
1283
1221
|
* @param {object} event Event object
|
|
1284
1222
|
* @param {Grid.view.Grid} event.grid Target grid
|
|
1285
1223
|
* @param {RowEditorContext} event.editorContext Editing context
|
|
@@ -1394,8 +1332,7 @@ export declare class BryntumGridComponent implements OnInit, OnDestroy {
|
|
|
1394
1332
|
onBeforeFinishCellEdit: any;
|
|
1395
1333
|
/**
|
|
1396
1334
|
* 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.
|
|
1397
|
-
* ...
|
|
1398
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#event-beforeFinishRowEdit)
|
|
1335
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#event-beforeFinishRowEdit)
|
|
1399
1336
|
* @param {object} event Event object
|
|
1400
1337
|
* @param {Grid.view.Grid} event.grid Target grid
|
|
1401
1338
|
* @param {RowEditorContext} event.editorContext Editing context
|
|
@@ -1440,16 +1377,14 @@ export declare class BryntumGridComponent implements OnInit, OnDestroy {
|
|
|
1440
1377
|
onBeforeRenderRows: any;
|
|
1441
1378
|
/**
|
|
1442
1379
|
* This event fires before row collapse is started.
|
|
1443
|
-
* ...
|
|
1444
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#event-beforeRowCollapse)
|
|
1380
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#event-beforeRowCollapse)
|
|
1445
1381
|
* @param {object} event Event object
|
|
1446
1382
|
* @param {Core.data.Model} event.record Record
|
|
1447
1383
|
*/
|
|
1448
1384
|
onBeforeRowCollapse: any;
|
|
1449
1385
|
/**
|
|
1450
1386
|
* This event fires before row expand is started.
|
|
1451
|
-
* ...
|
|
1452
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#event-beforeRowExpand)
|
|
1387
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#event-beforeRowExpand)
|
|
1453
1388
|
* @param {object} event Event object
|
|
1454
1389
|
* @param {Core.data.Model} event.record Record
|
|
1455
1390
|
*/
|
|
@@ -1529,8 +1464,7 @@ export declare class BryntumGridComponent implements OnInit, OnDestroy {
|
|
|
1529
1464
|
onCancelCellEdit: any;
|
|
1530
1465
|
/**
|
|
1531
1466
|
* Fires when any other event is fired from the object.
|
|
1532
|
-
* ...
|
|
1533
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#event-catchAll)
|
|
1467
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#event-catchAll)
|
|
1534
1468
|
* @param {object} event Event object
|
|
1535
1469
|
* @param {{[key: string]: any, type: string}} event.event The Object that contains event details
|
|
1536
1470
|
* @param {string} event.event.type The type of the event which is caught by the listener
|
|
@@ -1572,8 +1506,7 @@ export declare class BryntumGridComponent implements OnInit, OnDestroy {
|
|
|
1572
1506
|
/**
|
|
1573
1507
|
* This event fires on the owning grid before the context menu is shown for a cell.
|
|
1574
1508
|
* 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).
|
|
1575
|
-
* ...
|
|
1576
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#event-cellMenuBeforeShow)
|
|
1509
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#event-cellMenuBeforeShow)
|
|
1577
1510
|
* @param {object} event Event object
|
|
1578
1511
|
* @param {Grid.view.Grid} event.source The grid
|
|
1579
1512
|
* @param {Core.widget.Menu} event.menu The menu
|
|
@@ -1754,8 +1687,7 @@ export declare class BryntumGridComponent implements OnInit, OnDestroy {
|
|
|
1754
1687
|
onCopy: any;
|
|
1755
1688
|
/**
|
|
1756
1689
|
* Fired when data in the store changes.
|
|
1757
|
-
* ...
|
|
1758
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#event-dataChange)
|
|
1690
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#event-dataChange)
|
|
1759
1691
|
* @param {object} event Event object
|
|
1760
1692
|
* @param {Grid.view.GridBase} event.source Owning grid
|
|
1761
1693
|
* @param {Core.data.Store} event.store The originating store
|
|
@@ -1859,8 +1791,7 @@ export declare class BryntumGridComponent implements OnInit, OnDestroy {
|
|
|
1859
1791
|
onFinishCellEdit: any;
|
|
1860
1792
|
/**
|
|
1861
1793
|
* 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.
|
|
1862
|
-
* ...
|
|
1863
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#event-finishRowEdit)
|
|
1794
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#event-finishRowEdit)
|
|
1864
1795
|
* @param {object} event Event object
|
|
1865
1796
|
* @param {Grid.view.Grid} event.grid Target grid
|
|
1866
1797
|
* @param {RowEditorContext} event.editorContext Editing context
|
|
@@ -1960,8 +1891,7 @@ export declare class BryntumGridComponent implements OnInit, OnDestroy {
|
|
|
1960
1891
|
onGridRowDrop: any;
|
|
1961
1892
|
/**
|
|
1962
1893
|
* Fired when a grid header is clicked on.
|
|
1963
|
-
* ...
|
|
1964
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#event-headerClick)
|
|
1894
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#event-headerClick)
|
|
1965
1895
|
* @param {object} event Event object
|
|
1966
1896
|
* @param {Event} event.domEvent The triggering DOM event.
|
|
1967
1897
|
* @param {Grid.column.Column} event.column The column clicked on.
|
|
@@ -1970,8 +1900,7 @@ export declare class BryntumGridComponent implements OnInit, OnDestroy {
|
|
|
1970
1900
|
/**
|
|
1971
1901
|
* This event fires on the owning Grid before the context menu is shown for a header.
|
|
1972
1902
|
* 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).
|
|
1973
|
-
* ...
|
|
1974
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#event-headerMenuBeforeShow)
|
|
1903
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#event-headerMenuBeforeShow)
|
|
1975
1904
|
* @param {object} event Event object
|
|
1976
1905
|
* @param {Grid.view.Grid} event.source The grid
|
|
1977
1906
|
* @param {Core.widget.Menu} event.menu The menu
|
|
@@ -2034,8 +1963,7 @@ export declare class BryntumGridComponent implements OnInit, OnDestroy {
|
|
|
2034
1963
|
/**
|
|
2035
1964
|
* Triggered when a widget which had been in a non-visible state for any reason
|
|
2036
1965
|
* achieves visibility.
|
|
2037
|
-
* ...
|
|
2038
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#event-paint)
|
|
1966
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#event-paint)
|
|
2039
1967
|
* @param {object} event Event object
|
|
2040
1968
|
* @param {Core.widget.Widget} event.source The widget being painted.
|
|
2041
1969
|
* @param {boolean} event.firstPaint `true` if this is the first paint.
|
|
@@ -2054,8 +1982,8 @@ export declare class BryntumGridComponent implements OnInit, OnDestroy {
|
|
|
2054
1982
|
/**
|
|
2055
1983
|
* Fires on the owning Grid when export has finished
|
|
2056
1984
|
* @param {object} event Event object
|
|
2057
|
-
* @param {Response} event.response Optional response, if received
|
|
2058
|
-
* @param {Error} event.error Optional error, if exception occurred
|
|
1985
|
+
* @param {Response} [event.response] Optional response, if received
|
|
1986
|
+
* @param {Error} [event.error] Optional error, if exception occurred
|
|
2059
1987
|
*/
|
|
2060
1988
|
onPdfExport: any;
|
|
2061
1989
|
/**
|
|
@@ -2112,8 +2040,7 @@ export declare class BryntumGridComponent implements OnInit, OnDestroy {
|
|
|
2112
2040
|
onRowCollapse: any;
|
|
2113
2041
|
/**
|
|
2114
2042
|
* This event fires when a row expand has finished expanding.
|
|
2115
|
-
* ...
|
|
2116
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#event-rowExpand)
|
|
2043
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#event-rowExpand)
|
|
2117
2044
|
* @param {object} event Event object
|
|
2118
2045
|
* @param {Core.data.Model} event.record Record
|
|
2119
2046
|
* @param {object} event.expandedElements An object with the Grid region name as property and the expanded body element as value
|
|
@@ -2251,7 +2178,7 @@ export declare class BryntumGridComponent implements OnInit, OnDestroy {
|
|
|
2251
2178
|
* @param {Core.data.Model} event.groupRecord [DEPRECATED] Use `groupRecords` param instead
|
|
2252
2179
|
* @param {Core.data.Model[]} event.groupRecords The group records being toggled
|
|
2253
2180
|
* @param {boolean} event.collapse Collapsed (true) or expanded (false)
|
|
2254
|
-
* @param {boolean} event.allRecords True if this event is part of toggling all groups
|
|
2181
|
+
* @param {boolean} [event.allRecords] True if this event is part of toggling all groups
|
|
2255
2182
|
*/
|
|
2256
2183
|
onToggleGroup: any;
|
|
2257
2184
|
/**
|
|
@@ -2290,6 +2217,14 @@ export declare class BryntumGridComponent implements OnInit, OnDestroy {
|
|
|
2290
2217
|
* Create and append the underlying widget
|
|
2291
2218
|
*/
|
|
2292
2219
|
ngOnInit(): void;
|
|
2220
|
+
/**
|
|
2221
|
+
* Extracts all @font-face declarations from a shadow root's stylesheets and adds them to
|
|
2222
|
+
* document.head as a single <style> element. This is needed because @font-face rules inside
|
|
2223
|
+
* a shadow root are not reliably included in document.fonts across all browsers, causing
|
|
2224
|
+
* Bryntum's CSS compatibility check to incorrectly report missing fonts.
|
|
2225
|
+
* Safe to call multiple times — the extraction runs only once per page.
|
|
2226
|
+
*/
|
|
2227
|
+
private static ensureFontsInDocument;
|
|
2293
2228
|
/**
|
|
2294
2229
|
* Watch for changes
|
|
2295
2230
|
* @param changes
|
|
@@ -2300,5 +2235,5 @@ export declare class BryntumGridComponent implements OnInit, OnDestroy {
|
|
|
2300
2235
|
*/
|
|
2301
2236
|
ngOnDestroy(): void;
|
|
2302
2237
|
static ɵfac: i0.ɵɵFactoryDeclaration<BryntumGridComponent, never>;
|
|
2303
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BryntumGridComponent, "bryntum-grid", 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"; "type": "type"; "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>;
|
|
2238
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BryntumGridComponent, "bryntum-grid", 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"; "type": "type"; "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>;
|
|
2304
2239
|
}
|