@bryntum/grid-trial 7.3.4 → 7.3.5
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/grid.css +1 -1
- package/grid.d.ts +999 -78
- package/grid.module.js +39 -39
- package/grid.thin.d.ts +162 -49
- package/grid.umd.js +48 -48
- package/locales/grid.locale.Ar.js +1 -1
- package/locales/grid.locale.Bg.js +1 -1
- package/locales/grid.locale.Ca.js +1 -1
- package/locales/grid.locale.Cs.js +1 -1
- package/locales/grid.locale.Da.js +1 -1
- package/locales/grid.locale.De.js +1 -1
- package/locales/grid.locale.El.js +1 -1
- package/locales/grid.locale.En.js +1 -1
- package/locales/grid.locale.EnGb.js +1 -1
- package/locales/grid.locale.Es.js +1 -1
- package/locales/grid.locale.Et.js +1 -1
- package/locales/grid.locale.Eu.js +1 -1
- package/locales/grid.locale.Fi.js +1 -1
- package/locales/grid.locale.FrFr.js +1 -1
- package/locales/grid.locale.Gl.js +1 -1
- package/locales/grid.locale.He.js +1 -1
- package/locales/grid.locale.Hi.js +1 -1
- package/locales/grid.locale.Hr.js +1 -1
- package/locales/grid.locale.Hu.js +1 -1
- package/locales/grid.locale.Id.js +1 -1
- package/locales/grid.locale.It.js +1 -1
- package/locales/grid.locale.Ja.js +1 -1
- package/locales/grid.locale.Kk.js +1 -1
- package/locales/grid.locale.Ko.js +1 -1
- package/locales/grid.locale.Lt.js +1 -1
- package/locales/grid.locale.Lv.js +1 -1
- package/locales/grid.locale.Ms.js +1 -1
- package/locales/grid.locale.Nl.js +1 -1
- package/locales/grid.locale.No.js +1 -1
- package/locales/grid.locale.Pl.js +1 -1
- package/locales/grid.locale.Pt.js +1 -1
- package/locales/grid.locale.PtBr.js +1 -1
- package/locales/grid.locale.Ro.js +1 -1
- package/locales/grid.locale.Ru.js +1 -1
- package/locales/grid.locale.Sk.js +1 -1
- package/locales/grid.locale.Sl.js +1 -1
- package/locales/grid.locale.Sr.js +1 -1
- package/locales/grid.locale.SrRs.js +1 -1
- package/locales/grid.locale.SvSE.js +1 -1
- package/locales/grid.locale.Th.js +1 -1
- package/locales/grid.locale.Tr.js +1 -1
- package/locales/grid.locale.Uk.js +1 -1
- package/locales/grid.locale.Vi.js +1 -1
- package/locales/grid.locale.ZhCn.js +1 -1
- package/locales/grid.locale.ZhTw.js +1 -1
- package/package.json +1 -1
package/grid.thin.d.ts
CHANGED
|
@@ -7,7 +7,7 @@ import { AIBase, AIModelConfiguration, AIModelSelector, AISettingsModel, AISetti
|
|
|
7
7
|
Duration, DurationConfig, Editor, EditorConfig, EventsClass, FetchOptions, Field, FieldContainer, FieldContainerConfig,
|
|
8
8
|
FieldFilterPicker, FieldFilterPickerConfig, FieldFilterPickerGroup, FieldOption, FieldTriggerConfig, FormulaProvider,
|
|
9
9
|
FormulaProviderConfig, Grouper, InstancePlugin, KeyMap, KeyMapConfig, LazyLoadRequestParams, List, ListConfig, LocaleHelper,
|
|
10
|
-
LocaleManager, Mask, MaskConfig, Menu, MenuConfig, MenuItem, MenuItemEntry, Model, NumberFormat, NumberFormatConfig,
|
|
10
|
+
LocaleManager, Mask, MaskConfig, Menu, MenuConfig, MenuItem, MenuItemEntry, Model, NumberFormat, NumberFormatConfig, OverflowTwinConfig,
|
|
11
11
|
PagingRequestParams, PagingToolbar, PagingToolbarConfig, Panel, PanelCollapser, PanelCollapserConfig, PanelCollapserOverlay,
|
|
12
12
|
PanelCollapserOverlayConfig, PanelConfig, PanelHeader, Popup, PopupConfig, ReactJSX, Rectangle, ScrollManager, ScrollManagerConfig,
|
|
13
13
|
Scroller, ScrollerConfig, Sorter, StateProvider, StateTrackingManager, Store, StoreConfig, StoreSearchResult, SyncDataOnLoadOptions,
|
|
@@ -849,10 +849,10 @@ type ActionColumnConfig = {
|
|
|
849
849
|
* @param {HTMLElement} renderData.cellElement Cell element, for adding CSS classes, styling etc.
|
|
850
850
|
* @param {any} renderData.groupRowFor Current group value
|
|
851
851
|
* @param {Core.data.Model} renderData.record Record for the row
|
|
852
|
-
* @param {Core.data.Model[]} renderData.groupRecords Records in the group
|
|
852
|
+
* @param {Core.data.Model[]} renderData.groupRecords Records in the group. When the [GroupSummary](https://bryntum.com/products/grid/docs/api/Grid/feature/GroupSummary) feature is enabled with its default [target](https://bryntum.com/products/grid/docs/api/Grid/feature/GroupSummary#config-target) of `'footer'`, the last entry is the group footer record, so `groupRecords.length` is one more than `count`. Filter it out using its [isGroupFooter](https://bryntum.com/products/grid/docs/api/Core/data/Model#property-isGroupFooter) flag if needed
|
|
853
853
|
* @param {Grid.column.Column} renderData.column Current rendering column
|
|
854
854
|
* @param {Grid.column.Column} renderData.groupColumn Column that the grid is grouped by
|
|
855
|
-
* @param {number} renderData.count Number of records in the group
|
|
855
|
+
* @param {number} renderData.count Number of records in the group, excluding the group footer record
|
|
856
856
|
* @param {Grid.view.Grid} renderData.grid This grid
|
|
857
857
|
* @returns {DomConfig,string,void} The header grouping text or DomConfig object representing the HTML markup
|
|
858
858
|
*/
|
|
@@ -1525,10 +1525,10 @@ type AggregateColumnConfig = {
|
|
|
1525
1525
|
* @param {HTMLElement} renderData.cellElement Cell element, for adding CSS classes, styling etc.
|
|
1526
1526
|
* @param {any} renderData.groupRowFor Current group value
|
|
1527
1527
|
* @param {Core.data.Model} renderData.record Record for the row
|
|
1528
|
-
* @param {Core.data.Model[]} renderData.groupRecords Records in the group
|
|
1528
|
+
* @param {Core.data.Model[]} renderData.groupRecords Records in the group. When the [GroupSummary](https://bryntum.com/products/grid/docs/api/Grid/feature/GroupSummary) feature is enabled with its default [target](https://bryntum.com/products/grid/docs/api/Grid/feature/GroupSummary#config-target) of `'footer'`, the last entry is the group footer record, so `groupRecords.length` is one more than `count`. Filter it out using its [isGroupFooter](https://bryntum.com/products/grid/docs/api/Core/data/Model#property-isGroupFooter) flag if needed
|
|
1529
1529
|
* @param {Grid.column.Column} renderData.column Current rendering column
|
|
1530
1530
|
* @param {Grid.column.Column} renderData.groupColumn Column that the grid is grouped by
|
|
1531
|
-
* @param {number} renderData.count Number of records in the group
|
|
1531
|
+
* @param {number} renderData.count Number of records in the group, excluding the group footer record
|
|
1532
1532
|
* @param {Grid.view.Grid} renderData.grid This grid
|
|
1533
1533
|
* @returns {DomConfig,string,void} The header grouping text or DomConfig object representing the HTML markup
|
|
1534
1534
|
*/
|
|
@@ -2257,10 +2257,10 @@ type ChartColumnConfig = {
|
|
|
2257
2257
|
* @param {HTMLElement} renderData.cellElement Cell element, for adding CSS classes, styling etc.
|
|
2258
2258
|
* @param {any} renderData.groupRowFor Current group value
|
|
2259
2259
|
* @param {Core.data.Model} renderData.record Record for the row
|
|
2260
|
-
* @param {Core.data.Model[]} renderData.groupRecords Records in the group
|
|
2260
|
+
* @param {Core.data.Model[]} renderData.groupRecords Records in the group. When the [GroupSummary](https://bryntum.com/products/grid/docs/api/Grid/feature/GroupSummary) feature is enabled with its default [target](https://bryntum.com/products/grid/docs/api/Grid/feature/GroupSummary#config-target) of `'footer'`, the last entry is the group footer record, so `groupRecords.length` is one more than `count`. Filter it out using its [isGroupFooter](https://bryntum.com/products/grid/docs/api/Core/data/Model#property-isGroupFooter) flag if needed
|
|
2261
2261
|
* @param {Grid.column.Column} renderData.column Current rendering column
|
|
2262
2262
|
* @param {Grid.column.Column} renderData.groupColumn Column that the grid is grouped by
|
|
2263
|
-
* @param {number} renderData.count Number of records in the group
|
|
2263
|
+
* @param {number} renderData.count Number of records in the group, excluding the group footer record
|
|
2264
2264
|
* @param {Grid.view.Grid} renderData.grid This grid
|
|
2265
2265
|
* @returns {DomConfig,string,void} The header grouping text or DomConfig object representing the HTML markup
|
|
2266
2266
|
*/
|
|
@@ -2994,10 +2994,10 @@ type CheckColumnConfig = {
|
|
|
2994
2994
|
* @param {HTMLElement} renderData.cellElement Cell element, for adding CSS classes, styling etc.
|
|
2995
2995
|
* @param {any} renderData.groupRowFor Current group value
|
|
2996
2996
|
* @param {Core.data.Model} renderData.record Record for the row
|
|
2997
|
-
* @param {Core.data.Model[]} renderData.groupRecords Records in the group
|
|
2997
|
+
* @param {Core.data.Model[]} renderData.groupRecords Records in the group. When the [GroupSummary](https://bryntum.com/products/grid/docs/api/Grid/feature/GroupSummary) feature is enabled with its default [target](https://bryntum.com/products/grid/docs/api/Grid/feature/GroupSummary#config-target) of `'footer'`, the last entry is the group footer record, so `groupRecords.length` is one more than `count`. Filter it out using its [isGroupFooter](https://bryntum.com/products/grid/docs/api/Core/data/Model#property-isGroupFooter) flag if needed
|
|
2998
2998
|
* @param {Grid.column.Column} renderData.column Current rendering column
|
|
2999
2999
|
* @param {Grid.column.Column} renderData.groupColumn Column that the grid is grouped by
|
|
3000
|
-
* @param {number} renderData.count Number of records in the group
|
|
3000
|
+
* @param {number} renderData.count Number of records in the group, excluding the group footer record
|
|
3001
3001
|
* @param {Grid.view.Grid} renderData.grid This grid
|
|
3002
3002
|
* @returns {DomConfig,string,void} The header grouping text or DomConfig object representing the HTML markup
|
|
3003
3003
|
*/
|
|
@@ -3746,10 +3746,10 @@ type ColorColumnConfig = {
|
|
|
3746
3746
|
* @param {HTMLElement} renderData.cellElement Cell element, for adding CSS classes, styling etc.
|
|
3747
3747
|
* @param {any} renderData.groupRowFor Current group value
|
|
3748
3748
|
* @param {Core.data.Model} renderData.record Record for the row
|
|
3749
|
-
* @param {Core.data.Model[]} renderData.groupRecords Records in the group
|
|
3749
|
+
* @param {Core.data.Model[]} renderData.groupRecords Records in the group. When the [GroupSummary](https://bryntum.com/products/grid/docs/api/Grid/feature/GroupSummary) feature is enabled with its default [target](https://bryntum.com/products/grid/docs/api/Grid/feature/GroupSummary#config-target) of `'footer'`, the last entry is the group footer record, so `groupRecords.length` is one more than `count`. Filter it out using its [isGroupFooter](https://bryntum.com/products/grid/docs/api/Core/data/Model#property-isGroupFooter) flag if needed
|
|
3750
3750
|
* @param {Grid.column.Column} renderData.column Current rendering column
|
|
3751
3751
|
* @param {Grid.column.Column} renderData.groupColumn Column that the grid is grouped by
|
|
3752
|
-
* @param {number} renderData.count Number of records in the group
|
|
3752
|
+
* @param {number} renderData.count Number of records in the group, excluding the group footer record
|
|
3753
3753
|
* @param {Grid.view.Grid} renderData.grid This grid
|
|
3754
3754
|
* @returns {DomConfig,string,void} The header grouping text or DomConfig object representing the HTML markup
|
|
3755
3755
|
*/
|
|
@@ -4443,10 +4443,10 @@ type ColumnConfig = {
|
|
|
4443
4443
|
* @param {HTMLElement} renderData.cellElement Cell element, for adding CSS classes, styling etc.
|
|
4444
4444
|
* @param {any} renderData.groupRowFor Current group value
|
|
4445
4445
|
* @param {Core.data.Model} renderData.record Record for the row
|
|
4446
|
-
* @param {Core.data.Model[]} renderData.groupRecords Records in the group
|
|
4446
|
+
* @param {Core.data.Model[]} renderData.groupRecords Records in the group. When the [GroupSummary](https://bryntum.com/products/grid/docs/api/Grid/feature/GroupSummary) feature is enabled with its default [target](https://bryntum.com/products/grid/docs/api/Grid/feature/GroupSummary#config-target) of `'footer'`, the last entry is the group footer record, so `groupRecords.length` is one more than `count`. Filter it out using its [isGroupFooter](https://bryntum.com/products/grid/docs/api/Core/data/Model#property-isGroupFooter) flag if needed
|
|
4447
4447
|
* @param {Grid.column.Column} renderData.column Current rendering column
|
|
4448
4448
|
* @param {Grid.column.Column} renderData.groupColumn Column that the grid is grouped by
|
|
4449
|
-
* @param {number} renderData.count Number of records in the group
|
|
4449
|
+
* @param {number} renderData.count Number of records in the group, excluding the group footer record
|
|
4450
4450
|
* @param {Grid.view.Grid} renderData.grid This grid
|
|
4451
4451
|
* @returns {DomConfig,string,void} The header grouping text or DomConfig object representing the HTML markup
|
|
4452
4452
|
*/
|
|
@@ -5386,7 +5386,7 @@ export class Column extends Model {
|
|
|
5386
5386
|
* behaviour can be configured by setting [resizeToFitIncludesHeader](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#config-resizeToFitIncludesHeader).
|
|
5387
5387
|
* [More...](https://bryntum.com/products/grid/docs/api/Grid/column/Column#function-resizeToFitContent)
|
|
5388
5388
|
* @param {number,number[]} widthMin Minimum allowed width. If content width is less than this, this width is used instead. If this parameter is an array, the first element is `widthMin` and the seconds is `widthMax`.
|
|
5389
|
-
* @param {number} widthMax Maximum allowed width. If the content width is greater than this number, this width is used instead.
|
|
5389
|
+
* @param {number} widthMax Maximum allowed width. If the content width is greater than this number, this width is used instead, unless the column's own [minWidth](https://bryntum.com/products/grid/docs/api/Grid/column/Column#config-minWidth) is larger.
|
|
5390
5390
|
*/
|
|
5391
5391
|
resizeToFitContent(widthMin: number|number[], widthMax: number): Promise<void>;
|
|
5392
5392
|
/**
|
|
@@ -5723,10 +5723,10 @@ type CurrencyColumnConfig = {
|
|
|
5723
5723
|
* @param {HTMLElement} renderData.cellElement Cell element, for adding CSS classes, styling etc.
|
|
5724
5724
|
* @param {any} renderData.groupRowFor Current group value
|
|
5725
5725
|
* @param {Core.data.Model} renderData.record Record for the row
|
|
5726
|
-
* @param {Core.data.Model[]} renderData.groupRecords Records in the group
|
|
5726
|
+
* @param {Core.data.Model[]} renderData.groupRecords Records in the group. When the [GroupSummary](https://bryntum.com/products/grid/docs/api/Grid/feature/GroupSummary) feature is enabled with its default [target](https://bryntum.com/products/grid/docs/api/Grid/feature/GroupSummary#config-target) of `'footer'`, the last entry is the group footer record, so `groupRecords.length` is one more than `count`. Filter it out using its [isGroupFooter](https://bryntum.com/products/grid/docs/api/Core/data/Model#property-isGroupFooter) flag if needed
|
|
5727
5727
|
* @param {Grid.column.Column} renderData.column Current rendering column
|
|
5728
5728
|
* @param {Grid.column.Column} renderData.groupColumn Column that the grid is grouped by
|
|
5729
|
-
* @param {number} renderData.count Number of records in the group
|
|
5729
|
+
* @param {number} renderData.count Number of records in the group, excluding the group footer record
|
|
5730
5730
|
* @param {Grid.view.Grid} renderData.grid This grid
|
|
5731
5731
|
* @returns {DomConfig,string,void} The header grouping text or DomConfig object representing the HTML markup
|
|
5732
5732
|
*/
|
|
@@ -6437,10 +6437,10 @@ type DateColumnConfig = {
|
|
|
6437
6437
|
* @param {HTMLElement} renderData.cellElement Cell element, for adding CSS classes, styling etc.
|
|
6438
6438
|
* @param {any} renderData.groupRowFor Current group value
|
|
6439
6439
|
* @param {Core.data.Model} renderData.record Record for the row
|
|
6440
|
-
* @param {Core.data.Model[]} renderData.groupRecords Records in the group
|
|
6440
|
+
* @param {Core.data.Model[]} renderData.groupRecords Records in the group. When the [GroupSummary](https://bryntum.com/products/grid/docs/api/Grid/feature/GroupSummary) feature is enabled with its default [target](https://bryntum.com/products/grid/docs/api/Grid/feature/GroupSummary#config-target) of `'footer'`, the last entry is the group footer record, so `groupRecords.length` is one more than `count`. Filter it out using its [isGroupFooter](https://bryntum.com/products/grid/docs/api/Core/data/Model#property-isGroupFooter) flag if needed
|
|
6441
6441
|
* @param {Grid.column.Column} renderData.column Current rendering column
|
|
6442
6442
|
* @param {Grid.column.Column} renderData.groupColumn Column that the grid is grouped by
|
|
6443
|
-
* @param {number} renderData.count Number of records in the group
|
|
6443
|
+
* @param {number} renderData.count Number of records in the group, excluding the group footer record
|
|
6444
6444
|
* @param {Grid.view.Grid} renderData.grid This grid
|
|
6445
6445
|
* @returns {DomConfig,string,void} The header grouping text or DomConfig object representing the HTML markup
|
|
6446
6446
|
*/
|
|
@@ -7161,10 +7161,10 @@ type NumberColumnConfig = {
|
|
|
7161
7161
|
* @param {HTMLElement} renderData.cellElement Cell element, for adding CSS classes, styling etc.
|
|
7162
7162
|
* @param {any} renderData.groupRowFor Current group value
|
|
7163
7163
|
* @param {Core.data.Model} renderData.record Record for the row
|
|
7164
|
-
* @param {Core.data.Model[]} renderData.groupRecords Records in the group
|
|
7164
|
+
* @param {Core.data.Model[]} renderData.groupRecords Records in the group. When the [GroupSummary](https://bryntum.com/products/grid/docs/api/Grid/feature/GroupSummary) feature is enabled with its default [target](https://bryntum.com/products/grid/docs/api/Grid/feature/GroupSummary#config-target) of `'footer'`, the last entry is the group footer record, so `groupRecords.length` is one more than `count`. Filter it out using its [isGroupFooter](https://bryntum.com/products/grid/docs/api/Core/data/Model#property-isGroupFooter) flag if needed
|
|
7165
7165
|
* @param {Grid.column.Column} renderData.column Current rendering column
|
|
7166
7166
|
* @param {Grid.column.Column} renderData.groupColumn Column that the grid is grouped by
|
|
7167
|
-
* @param {number} renderData.count Number of records in the group
|
|
7167
|
+
* @param {number} renderData.count Number of records in the group, excluding the group footer record
|
|
7168
7168
|
* @param {Grid.view.Grid} renderData.grid This grid
|
|
7169
7169
|
* @returns {DomConfig,string,void} The header grouping text or DomConfig object representing the HTML markup
|
|
7170
7170
|
*/
|
|
@@ -7901,10 +7901,10 @@ type PercentColumnConfig = {
|
|
|
7901
7901
|
* @param {HTMLElement} renderData.cellElement Cell element, for adding CSS classes, styling etc.
|
|
7902
7902
|
* @param {any} renderData.groupRowFor Current group value
|
|
7903
7903
|
* @param {Core.data.Model} renderData.record Record for the row
|
|
7904
|
-
* @param {Core.data.Model[]} renderData.groupRecords Records in the group
|
|
7904
|
+
* @param {Core.data.Model[]} renderData.groupRecords Records in the group. When the [GroupSummary](https://bryntum.com/products/grid/docs/api/Grid/feature/GroupSummary) feature is enabled with its default [target](https://bryntum.com/products/grid/docs/api/Grid/feature/GroupSummary#config-target) of `'footer'`, the last entry is the group footer record, so `groupRecords.length` is one more than `count`. Filter it out using its [isGroupFooter](https://bryntum.com/products/grid/docs/api/Core/data/Model#property-isGroupFooter) flag if needed
|
|
7905
7905
|
* @param {Grid.column.Column} renderData.column Current rendering column
|
|
7906
7906
|
* @param {Grid.column.Column} renderData.groupColumn Column that the grid is grouped by
|
|
7907
|
-
* @param {number} renderData.count Number of records in the group
|
|
7907
|
+
* @param {number} renderData.count Number of records in the group, excluding the group footer record
|
|
7908
7908
|
* @param {Grid.view.Grid} renderData.grid This grid
|
|
7909
7909
|
* @returns {DomConfig,string,void} The header grouping text or DomConfig object representing the HTML markup
|
|
7910
7910
|
*/
|
|
@@ -8639,10 +8639,10 @@ type RatingColumnConfig = {
|
|
|
8639
8639
|
* @param {HTMLElement} renderData.cellElement Cell element, for adding CSS classes, styling etc.
|
|
8640
8640
|
* @param {any} renderData.groupRowFor Current group value
|
|
8641
8641
|
* @param {Core.data.Model} renderData.record Record for the row
|
|
8642
|
-
* @param {Core.data.Model[]} renderData.groupRecords Records in the group
|
|
8642
|
+
* @param {Core.data.Model[]} renderData.groupRecords Records in the group. When the [GroupSummary](https://bryntum.com/products/grid/docs/api/Grid/feature/GroupSummary) feature is enabled with its default [target](https://bryntum.com/products/grid/docs/api/Grid/feature/GroupSummary#config-target) of `'footer'`, the last entry is the group footer record, so `groupRecords.length` is one more than `count`. Filter it out using its [isGroupFooter](https://bryntum.com/products/grid/docs/api/Core/data/Model#property-isGroupFooter) flag if needed
|
|
8643
8643
|
* @param {Grid.column.Column} renderData.column Current rendering column
|
|
8644
8644
|
* @param {Grid.column.Column} renderData.groupColumn Column that the grid is grouped by
|
|
8645
|
-
* @param {number} renderData.count Number of records in the group
|
|
8645
|
+
* @param {number} renderData.count Number of records in the group, excluding the group footer record
|
|
8646
8646
|
* @param {Grid.view.Grid} renderData.grid This grid
|
|
8647
8647
|
* @returns {DomConfig,string,void} The header grouping text or DomConfig object representing the HTML markup
|
|
8648
8648
|
*/
|
|
@@ -9289,10 +9289,10 @@ type RowNumberColumnConfig = {
|
|
|
9289
9289
|
* @param {HTMLElement} renderData.cellElement Cell element, for adding CSS classes, styling etc.
|
|
9290
9290
|
* @param {any} renderData.groupRowFor Current group value
|
|
9291
9291
|
* @param {Core.data.Model} renderData.record Record for the row
|
|
9292
|
-
* @param {Core.data.Model[]} renderData.groupRecords Records in the group
|
|
9292
|
+
* @param {Core.data.Model[]} renderData.groupRecords Records in the group. When the [GroupSummary](https://bryntum.com/products/grid/docs/api/Grid/feature/GroupSummary) feature is enabled with its default [target](https://bryntum.com/products/grid/docs/api/Grid/feature/GroupSummary#config-target) of `'footer'`, the last entry is the group footer record, so `groupRecords.length` is one more than `count`. Filter it out using its [isGroupFooter](https://bryntum.com/products/grid/docs/api/Core/data/Model#property-isGroupFooter) flag if needed
|
|
9293
9293
|
* @param {Grid.column.Column} renderData.column Current rendering column
|
|
9294
9294
|
* @param {Grid.column.Column} renderData.groupColumn Column that the grid is grouped by
|
|
9295
|
-
* @param {number} renderData.count Number of records in the group
|
|
9295
|
+
* @param {number} renderData.count Number of records in the group, excluding the group footer record
|
|
9296
9296
|
* @param {Grid.view.Grid} renderData.grid This grid
|
|
9297
9297
|
* @returns {DomConfig,string,void} The header grouping text or DomConfig object representing the HTML markup
|
|
9298
9298
|
*/
|
|
@@ -9919,10 +9919,10 @@ type SparklineColumnConfig = {
|
|
|
9919
9919
|
* @param {HTMLElement} renderData.cellElement Cell element, for adding CSS classes, styling etc.
|
|
9920
9920
|
* @param {any} renderData.groupRowFor Current group value
|
|
9921
9921
|
* @param {Core.data.Model} renderData.record Record for the row
|
|
9922
|
-
* @param {Core.data.Model[]} renderData.groupRecords Records in the group
|
|
9922
|
+
* @param {Core.data.Model[]} renderData.groupRecords Records in the group. When the [GroupSummary](https://bryntum.com/products/grid/docs/api/Grid/feature/GroupSummary) feature is enabled with its default [target](https://bryntum.com/products/grid/docs/api/Grid/feature/GroupSummary#config-target) of `'footer'`, the last entry is the group footer record, so `groupRecords.length` is one more than `count`. Filter it out using its [isGroupFooter](https://bryntum.com/products/grid/docs/api/Core/data/Model#property-isGroupFooter) flag if needed
|
|
9923
9923
|
* @param {Grid.column.Column} renderData.column Current rendering column
|
|
9924
9924
|
* @param {Grid.column.Column} renderData.groupColumn Column that the grid is grouped by
|
|
9925
|
-
* @param {number} renderData.count Number of records in the group
|
|
9925
|
+
* @param {number} renderData.count Number of records in the group, excluding the group footer record
|
|
9926
9926
|
* @param {Grid.view.Grid} renderData.grid This grid
|
|
9927
9927
|
* @returns {DomConfig,string,void} The header grouping text or DomConfig object representing the HTML markup
|
|
9928
9928
|
*/
|
|
@@ -10605,10 +10605,10 @@ type TemplateColumnConfig = {
|
|
|
10605
10605
|
* @param {HTMLElement} renderData.cellElement Cell element, for adding CSS classes, styling etc.
|
|
10606
10606
|
* @param {any} renderData.groupRowFor Current group value
|
|
10607
10607
|
* @param {Core.data.Model} renderData.record Record for the row
|
|
10608
|
-
* @param {Core.data.Model[]} renderData.groupRecords Records in the group
|
|
10608
|
+
* @param {Core.data.Model[]} renderData.groupRecords Records in the group. When the [GroupSummary](https://bryntum.com/products/grid/docs/api/Grid/feature/GroupSummary) feature is enabled with its default [target](https://bryntum.com/products/grid/docs/api/Grid/feature/GroupSummary#config-target) of `'footer'`, the last entry is the group footer record, so `groupRecords.length` is one more than `count`. Filter it out using its [isGroupFooter](https://bryntum.com/products/grid/docs/api/Core/data/Model#property-isGroupFooter) flag if needed
|
|
10609
10609
|
* @param {Grid.column.Column} renderData.column Current rendering column
|
|
10610
10610
|
* @param {Grid.column.Column} renderData.groupColumn Column that the grid is grouped by
|
|
10611
|
-
* @param {number} renderData.count Number of records in the group
|
|
10611
|
+
* @param {number} renderData.count Number of records in the group, excluding the group footer record
|
|
10612
10612
|
* @param {Grid.view.Grid} renderData.grid This grid
|
|
10613
10613
|
* @returns {DomConfig,string,void} The header grouping text or DomConfig object representing the HTML markup
|
|
10614
10614
|
*/
|
|
@@ -11296,10 +11296,10 @@ type TimeColumnConfig = {
|
|
|
11296
11296
|
* @param {HTMLElement} renderData.cellElement Cell element, for adding CSS classes, styling etc.
|
|
11297
11297
|
* @param {any} renderData.groupRowFor Current group value
|
|
11298
11298
|
* @param {Core.data.Model} renderData.record Record for the row
|
|
11299
|
-
* @param {Core.data.Model[]} renderData.groupRecords Records in the group
|
|
11299
|
+
* @param {Core.data.Model[]} renderData.groupRecords Records in the group. When the [GroupSummary](https://bryntum.com/products/grid/docs/api/Grid/feature/GroupSummary) feature is enabled with its default [target](https://bryntum.com/products/grid/docs/api/Grid/feature/GroupSummary#config-target) of `'footer'`, the last entry is the group footer record, so `groupRecords.length` is one more than `count`. Filter it out using its [isGroupFooter](https://bryntum.com/products/grid/docs/api/Core/data/Model#property-isGroupFooter) flag if needed
|
|
11300
11300
|
* @param {Grid.column.Column} renderData.column Current rendering column
|
|
11301
11301
|
* @param {Grid.column.Column} renderData.groupColumn Column that the grid is grouped by
|
|
11302
|
-
* @param {number} renderData.count Number of records in the group
|
|
11302
|
+
* @param {number} renderData.count Number of records in the group, excluding the group footer record
|
|
11303
11303
|
* @param {Grid.view.Grid} renderData.grid This grid
|
|
11304
11304
|
* @returns {DomConfig,string,void} The header grouping text or DomConfig object representing the HTML markup
|
|
11305
11305
|
*/
|
|
@@ -11990,10 +11990,10 @@ type TreeColumnConfig = {
|
|
|
11990
11990
|
* @param {HTMLElement} renderData.cellElement Cell element, for adding CSS classes, styling etc.
|
|
11991
11991
|
* @param {any} renderData.groupRowFor Current group value
|
|
11992
11992
|
* @param {Core.data.Model} renderData.record Record for the row
|
|
11993
|
-
* @param {Core.data.Model[]} renderData.groupRecords Records in the group
|
|
11993
|
+
* @param {Core.data.Model[]} renderData.groupRecords Records in the group. When the [GroupSummary](https://bryntum.com/products/grid/docs/api/Grid/feature/GroupSummary) feature is enabled with its default [target](https://bryntum.com/products/grid/docs/api/Grid/feature/GroupSummary#config-target) of `'footer'`, the last entry is the group footer record, so `groupRecords.length` is one more than `count`. Filter it out using its [isGroupFooter](https://bryntum.com/products/grid/docs/api/Core/data/Model#property-isGroupFooter) flag if needed
|
|
11994
11994
|
* @param {Grid.column.Column} renderData.column Current rendering column
|
|
11995
11995
|
* @param {Grid.column.Column} renderData.groupColumn Column that the grid is grouped by
|
|
11996
|
-
* @param {number} renderData.count Number of records in the group
|
|
11996
|
+
* @param {number} renderData.count Number of records in the group, excluding the group footer record
|
|
11997
11997
|
* @param {Grid.view.Grid} renderData.grid This grid
|
|
11998
11998
|
* @returns {DomConfig,string,void} The header grouping text or DomConfig object representing the HTML markup
|
|
11999
11999
|
*/
|
|
@@ -12710,10 +12710,10 @@ type WidgetColumnConfig = {
|
|
|
12710
12710
|
* @param {HTMLElement} renderData.cellElement Cell element, for adding CSS classes, styling etc.
|
|
12711
12711
|
* @param {any} renderData.groupRowFor Current group value
|
|
12712
12712
|
* @param {Core.data.Model} renderData.record Record for the row
|
|
12713
|
-
* @param {Core.data.Model[]} renderData.groupRecords Records in the group
|
|
12713
|
+
* @param {Core.data.Model[]} renderData.groupRecords Records in the group. When the [GroupSummary](https://bryntum.com/products/grid/docs/api/Grid/feature/GroupSummary) feature is enabled with its default [target](https://bryntum.com/products/grid/docs/api/Grid/feature/GroupSummary#config-target) of `'footer'`, the last entry is the group footer record, so `groupRecords.length` is one more than `count`. Filter it out using its [isGroupFooter](https://bryntum.com/products/grid/docs/api/Core/data/Model#property-isGroupFooter) flag if needed
|
|
12714
12714
|
* @param {Grid.column.Column} renderData.column Current rendering column
|
|
12715
12715
|
* @param {Grid.column.Column} renderData.groupColumn Column that the grid is grouped by
|
|
12716
|
-
* @param {number} renderData.count Number of records in the group
|
|
12716
|
+
* @param {number} renderData.count Number of records in the group, excluding the group footer record
|
|
12717
12717
|
* @param {Grid.view.Grid} renderData.grid This grid
|
|
12718
12718
|
* @returns {DomConfig,string,void} The header grouping text or DomConfig object representing the HTML markup
|
|
12719
12719
|
*/
|
|
@@ -16547,6 +16547,12 @@ type CellTooltipConfig = {
|
|
|
16547
16547
|
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/CellTooltip#config-namedItems)
|
|
16548
16548
|
*/
|
|
16549
16549
|
namedItems?: Record<string, GridContainerItemConfig>
|
|
16550
|
+
/**
|
|
16551
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
16552
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
16553
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/CellTooltip#config-overflowTwinConfig)
|
|
16554
|
+
*/
|
|
16555
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
16550
16556
|
/**
|
|
16551
16557
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
16552
16558
|
* [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
|
|
@@ -16674,7 +16680,7 @@ type CellTooltipConfig = {
|
|
|
16674
16680
|
* (if explicitly specified) will be used as the `stateId`.
|
|
16675
16681
|
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/CellTooltip#config-stateId)
|
|
16676
16682
|
*/
|
|
16677
|
-
stateId?: string
|
|
16683
|
+
stateId?: string|null
|
|
16678
16684
|
/**
|
|
16679
16685
|
* 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`
|
|
16680
16686
|
* will be saved using the [default state provider](https://bryntum.com/products/grid/docs/api/Core/state/StateProvider#property-instance-static).
|
|
@@ -17243,6 +17249,7 @@ type ColumnAutoWidthConfig = {
|
|
|
17243
17249
|
* The default `autoWidth` option for columns with `autoWidth: true`. This can
|
|
17244
17250
|
* be a single number for the minimum column width, or an array of two numbers
|
|
17245
17251
|
* for the `[minWidth, maxWidth]`.
|
|
17252
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/ColumnAutoWidth#config-default)
|
|
17246
17253
|
*/
|
|
17247
17254
|
default?: number|number[]
|
|
17248
17255
|
/**
|
|
@@ -18386,6 +18393,12 @@ type ColumnResizeConfig = {
|
|
|
18386
18393
|
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/ColumnResize#config-localizableProperties)
|
|
18387
18394
|
*/
|
|
18388
18395
|
localizableProperties?: string[]
|
|
18396
|
+
/**
|
|
18397
|
+
* The [Popup](https://bryntum.com/products/grid/docs/api/Core/widget/Popup) shown by the "Resize column" header menu item, allowing the column width to be
|
|
18398
|
+
* set from the keyboard. Created lazily on first use and destroyed automatically with the feature.
|
|
18399
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/ColumnResize#config-resizeDialog)
|
|
18400
|
+
*/
|
|
18401
|
+
resizeDialog?: PopupConfig
|
|
18389
18402
|
/**
|
|
18390
18403
|
* Fires before an object is destroyed.
|
|
18391
18404
|
* @param {object} event Event object
|
|
@@ -18435,6 +18448,11 @@ export class ColumnResize extends InstancePlugin {
|
|
|
18435
18448
|
* Identifies an object as an instance of [ColumnResize](https://bryntum.com/products/grid/docs/api/Grid/feature/ColumnResize) class, or subclass thereof.
|
|
18436
18449
|
*/
|
|
18437
18450
|
readonly isColumnResize: boolean
|
|
18451
|
+
/**
|
|
18452
|
+
* The [Popup](https://bryntum.com/products/grid/docs/api/Core/widget/Popup) shown by the "Resize column" header menu item, allowing the column width to be
|
|
18453
|
+
* set from the keyboard. Created lazily on first use and destroyed automatically with the feature.
|
|
18454
|
+
*/
|
|
18455
|
+
resizeDialog: PopupConfig|Popup
|
|
18438
18456
|
/**
|
|
18439
18457
|
* Fires before an object is destroyed.
|
|
18440
18458
|
* @param {object} event Event object
|
|
@@ -18460,6 +18478,12 @@ export class ColumnResize extends InstancePlugin {
|
|
|
18460
18478
|
* @param {PdfExportConfig} [config]
|
|
18461
18479
|
*/
|
|
18462
18480
|
constructor(config?: ColumnResizeConfig);
|
|
18481
|
+
/**
|
|
18482
|
+
* Shows the [resize dialog](https://bryntum.com/products/grid/docs/api/Grid/feature/ColumnResize#config-resizeDialog) for the passed column, allowing its width to be set from
|
|
18483
|
+
* the keyboard.
|
|
18484
|
+
* @param {Grid.column.Column} column The column to resize
|
|
18485
|
+
*/
|
|
18486
|
+
showResizeDialog(column: Column): Popup;
|
|
18463
18487
|
}
|
|
18464
18488
|
|
|
18465
18489
|
/**
|
|
@@ -19503,7 +19527,8 @@ type GroupConfig = {
|
|
|
19503
19527
|
* @param {object} context Renderer context data
|
|
19504
19528
|
* @param {any} context.groupRowFor The value of the `field` for the group. Type depends on `field` used for grouping
|
|
19505
19529
|
* @param {Core.data.Model} context.record The group record representing the group
|
|
19506
|
-
* @param {
|
|
19530
|
+
* @param {Core.data.Model[]} context.groupRecords Records in the group. When the [GroupSummary](https://bryntum.com/products/grid/docs/api/Grid/feature/GroupSummary) feature is enabled with its default [target](https://bryntum.com/products/grid/docs/api/Grid/feature/GroupSummary#config-target) of `'footer'`, the last entry may be the group footer record, making `groupRecords.length` one more than `count`. Filter it out using its [isGroupFooter](https://bryntum.com/products/grid/docs/api/Core/data/Model#property-isGroupFooter) flag if needed
|
|
19531
|
+
* @param {number} context.count Number of records in the group, excluding the group footer record
|
|
19507
19532
|
* @param {Grid.column.Column} context.column The column the renderer runs for
|
|
19508
19533
|
* @param {boolean} context.isFirstColumn True, if `column` is the first column. If `RowNumberColumn` is the real first column, it's not taken into account
|
|
19509
19534
|
* @param {Grid.column.Column} context.groupColumn The column under which the `field` is shown
|
|
@@ -19513,7 +19538,7 @@ type GroupConfig = {
|
|
|
19513
19538
|
* @param {HTMLElement} context.rowElement The owning row element
|
|
19514
19539
|
* @returns {DomConfig,string,void}
|
|
19515
19540
|
*/
|
|
19516
|
-
renderer?: (context: { groupRowFor: any, record: Model, count: number, column: Column, isFirstColumn: boolean, groupColumn: Column, size: { height: number }, grid: Grid, rowElement: HTMLElement }) => DomConfig|string|void
|
|
19541
|
+
renderer?: (context: { groupRowFor: any, record: Model, groupRecords: Model[], count: number, column: Column, isFirstColumn: boolean, groupColumn: Column, size: { height: number }, grid: Grid, rowElement: HTMLElement }) => DomConfig|string|void
|
|
19517
19542
|
/**
|
|
19518
19543
|
* Set to `true` to show the number of members of each group in the group header. Not applicable when using
|
|
19519
19544
|
* Scheduler in vertical mode.
|
|
@@ -22447,6 +22472,7 @@ type RowReorderConfig = {
|
|
|
22447
22472
|
/**
|
|
22448
22473
|
* Set to `true` to preserve sorters after a drop operation, if that operation leads to the store still being
|
|
22449
22474
|
* sorted.
|
|
22475
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/RowReorder#config-preserveSorters)
|
|
22450
22476
|
*/
|
|
22451
22477
|
preserveSorters?: boolean
|
|
22452
22478
|
/**
|
|
@@ -24716,9 +24742,9 @@ export class TreeGroup extends InstancePlugin {
|
|
|
24716
24742
|
/**
|
|
24717
24743
|
* Transforms the data according to the supplied levels.
|
|
24718
24744
|
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/TreeGroup#function-group)
|
|
24719
|
-
* @param {(string|Grid.column.Column|Function)[]} levels Field names or functions use to generate parents in resulting tree
|
|
24720
|
-
* @param {Core.data.Model} levels.record record
|
|
24721
|
-
* @param {string} levels.returns Value to determine a parent
|
|
24745
|
+
* @param {(string|Grid.column.Column|Function)[]} levels Field names or functions use to generate parents in resulting tree. When a function is supplied it receives the leaf record and returns the grouping key.
|
|
24746
|
+
* @param {Core.data.Model} levels.record The leaf record. Stores that wrap originals (such as Scheduler Pro's `ResourceUtilizationStore`) attach the underlying record on the wrapper's `origin` field, so callbacks can destructure with `({ origin }) => ...`.
|
|
24747
|
+
* @param {string} levels.returns Value to determine a parent. Return a primitive grouping key (typically a `String`), another `Model` to group under, or the [StopBranch](https://bryntum.com/products/grid/docs/api/Core/data/Store#property-StopBranch-static) sentinel to stop further grouping for that branch.
|
|
24722
24748
|
*/
|
|
24723
24749
|
group(levels: (string|Column|((record: Model) => string))[]): Promise<void>;
|
|
24724
24750
|
}
|
|
@@ -26390,6 +26416,10 @@ export class PdfExport extends InstancePlugin {
|
|
|
26390
26416
|
* rows with an additional buffer.
|
|
26391
26417
|
*/
|
|
26392
26418
|
rowReadyCondition: () => void
|
|
26419
|
+
/**
|
|
26420
|
+
* Set to `true` to receive binary file from the server instead of download link.
|
|
26421
|
+
*/
|
|
26422
|
+
sendAsBinary: boolean
|
|
26393
26423
|
/**
|
|
26394
26424
|
* Determines whether to stream exported pages directly to the export server using WebSocket connection to
|
|
26395
26425
|
* offload client application.
|
|
@@ -30997,6 +31027,12 @@ type GridConfig = {
|
|
|
30997
31027
|
* Grid monitors window resize by default.
|
|
30998
31028
|
*/
|
|
30999
31029
|
monitorResize?: boolean
|
|
31030
|
+
/**
|
|
31031
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
31032
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
31033
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#config-overflowTwinConfig)
|
|
31034
|
+
*/
|
|
31035
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
31000
31036
|
/**
|
|
31001
31037
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
31002
31038
|
* [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
|
|
@@ -31148,7 +31184,7 @@ type GridConfig = {
|
|
|
31148
31184
|
* (if explicitly specified) will be used as the `stateId`.
|
|
31149
31185
|
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#config-stateId)
|
|
31150
31186
|
*/
|
|
31151
|
-
stateId?: string
|
|
31187
|
+
stateId?: string|null
|
|
31152
31188
|
/**
|
|
31153
31189
|
* 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`
|
|
31154
31190
|
* will be saved using the [default state provider](https://bryntum.com/products/grid/docs/api/Core/state/StateProvider#property-instance-static).
|
|
@@ -35058,6 +35094,12 @@ type GridBaseConfig = {
|
|
|
35058
35094
|
* Grid monitors window resize by default.
|
|
35059
35095
|
*/
|
|
35060
35096
|
monitorResize?: boolean
|
|
35097
|
+
/**
|
|
35098
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
35099
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
35100
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-overflowTwinConfig)
|
|
35101
|
+
*/
|
|
35102
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
35061
35103
|
/**
|
|
35062
35104
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
35063
35105
|
* [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
|
|
@@ -35209,7 +35251,7 @@ type GridBaseConfig = {
|
|
|
35209
35251
|
* (if explicitly specified) will be used as the `stateId`.
|
|
35210
35252
|
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-stateId)
|
|
35211
35253
|
*/
|
|
35212
|
-
stateId?: string
|
|
35254
|
+
stateId?: string|null
|
|
35213
35255
|
/**
|
|
35214
35256
|
* 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`
|
|
35215
35257
|
* will be saved using the [default state provider](https://bryntum.com/products/grid/docs/api/Core/state/StateProvider#property-instance-static).
|
|
@@ -36637,6 +36679,12 @@ export class GridBase extends Panel {
|
|
|
36637
36679
|
* Gets or sets grid's state. Check out [GridState](https://bryntum.com/products/grid/docs/api/Grid/view/mixin/GridState) mixin for details.
|
|
36638
36680
|
*/
|
|
36639
36681
|
state: GridStateInfo
|
|
36682
|
+
/**
|
|
36683
|
+
* 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
|
|
36684
|
+
* 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)
|
|
36685
|
+
* (if explicitly specified) will be used as the `stateId`.
|
|
36686
|
+
*/
|
|
36687
|
+
stateId: string|null
|
|
36640
36688
|
/**
|
|
36641
36689
|
* The properties of this settings object controls how grid is restored from state data.
|
|
36642
36690
|
*/
|
|
@@ -37757,9 +37805,9 @@ export class GridBase extends Panel {
|
|
|
37757
37805
|
/**
|
|
37758
37806
|
* Transforms the data according to the supplied levels.
|
|
37759
37807
|
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#function-group)
|
|
37760
|
-
* @param {(string|Grid.column.Column|Function)[]} levels Field names or functions use to generate parents in resulting tree
|
|
37761
|
-
* @param {Core.data.Model} levels.record record
|
|
37762
|
-
* @param {string} levels.returns Value to determine a parent
|
|
37808
|
+
* @param {(string|Grid.column.Column|Function)[]} levels Field names or functions use to generate parents in resulting tree. When a function is supplied it receives the leaf record and returns the grouping key.
|
|
37809
|
+
* @param {Core.data.Model} levels.record The leaf record. Stores that wrap originals (such as Scheduler Pro's `ResourceUtilizationStore`) attach the underlying record on the wrapper's `origin` field, so callbacks can destructure with `({ origin }) => ...`.
|
|
37810
|
+
* @param {string} levels.returns Value to determine a parent. Return a primitive grouping key (typically a `String`), another `Model` to group under, or the [StopBranch](https://bryntum.com/products/grid/docs/api/Core/data/Store#property-StopBranch-static) sentinel to stop further grouping for that branch.
|
|
37763
37811
|
*/
|
|
37764
37812
|
group(levels: (string|Column|((record: Model) => string))[]): Promise<void>;
|
|
37765
37813
|
/**
|
|
@@ -37902,6 +37950,11 @@ export class GridBase extends Panel {
|
|
|
37902
37950
|
* Rerenders all grid rows, completely replacing all row elements with new ones
|
|
37903
37951
|
*/
|
|
37904
37952
|
renderRows(): void;
|
|
37953
|
+
/**
|
|
37954
|
+
* Resets this object's [state](https://bryntum.com/products/grid/docs/api/Core/mixin/State#property-state) to the default state captured when the object was created,
|
|
37955
|
+
* undoing any state changes applied since then.
|
|
37956
|
+
*/
|
|
37957
|
+
resetDefaultState(): void;
|
|
37905
37958
|
/**
|
|
37906
37959
|
* Restore scroll state. If state is not specified, restores the last stored state.
|
|
37907
37960
|
* @param {object} [state] Scroll state, optional
|
|
@@ -38613,6 +38666,12 @@ type SubGridConfig = {
|
|
|
38613
38666
|
* @property {boolean} immediate Set to `true` to receive resize notifications immediately.
|
|
38614
38667
|
*/
|
|
38615
38668
|
monitorResize?: boolean|object
|
|
38669
|
+
/**
|
|
38670
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
38671
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
38672
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/SubGrid#config-overflowTwinConfig)
|
|
38673
|
+
*/
|
|
38674
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
38616
38675
|
/**
|
|
38617
38676
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
38618
38677
|
* [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
|
|
@@ -41537,6 +41596,12 @@ type TreeGridConfig = {
|
|
|
41537
41596
|
* Grid monitors window resize by default.
|
|
41538
41597
|
*/
|
|
41539
41598
|
monitorResize?: boolean
|
|
41599
|
+
/**
|
|
41600
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
41601
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
41602
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/TreeGrid#config-overflowTwinConfig)
|
|
41603
|
+
*/
|
|
41604
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
41540
41605
|
/**
|
|
41541
41606
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
41542
41607
|
* [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
|
|
@@ -41688,7 +41753,7 @@ type TreeGridConfig = {
|
|
|
41688
41753
|
* (if explicitly specified) will be used as the `stateId`.
|
|
41689
41754
|
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/TreeGrid#config-stateId)
|
|
41690
41755
|
*/
|
|
41691
|
-
stateId?: string
|
|
41756
|
+
stateId?: string|null
|
|
41692
41757
|
/**
|
|
41693
41758
|
* 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`
|
|
41694
41759
|
* will be saved using the [default state provider](https://bryntum.com/products/grid/docs/api/Core/state/StateProvider#property-instance-static).
|
|
@@ -43896,6 +43961,12 @@ type ExportDialogConfig = {
|
|
|
43896
43961
|
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/export/ExportDialog#config-namedItems)
|
|
43897
43962
|
*/
|
|
43898
43963
|
namedItems?: Record<string, GridContainerItemConfig>
|
|
43964
|
+
/**
|
|
43965
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
43966
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
43967
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/export/ExportDialog#config-overflowTwinConfig)
|
|
43968
|
+
*/
|
|
43969
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
43899
43970
|
/**
|
|
43900
43971
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
43901
43972
|
* [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
|
|
@@ -44020,7 +44091,7 @@ type ExportDialogConfig = {
|
|
|
44020
44091
|
* (if explicitly specified) will be used as the `stateId`.
|
|
44021
44092
|
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/export/ExportDialog#config-stateId)
|
|
44022
44093
|
*/
|
|
44023
|
-
stateId?: string
|
|
44094
|
+
stateId?: string|null
|
|
44024
44095
|
/**
|
|
44025
44096
|
* 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`
|
|
44026
44097
|
* will be saved using the [default state provider](https://bryntum.com/products/grid/docs/api/Core/state/StateProvider#property-instance-static).
|
|
@@ -45854,6 +45925,12 @@ type AIFilterFieldConfig = {
|
|
|
45854
45925
|
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-name)
|
|
45855
45926
|
*/
|
|
45856
45927
|
name?: string
|
|
45928
|
+
/**
|
|
45929
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
45930
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
45931
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-overflowTwinConfig)
|
|
45932
|
+
*/
|
|
45933
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
45857
45934
|
/**
|
|
45858
45935
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
45859
45936
|
* [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
|
|
@@ -47144,6 +47221,12 @@ type ChecklistFilterComboConfig = {
|
|
|
47144
47221
|
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-name)
|
|
47145
47222
|
*/
|
|
47146
47223
|
name?: string
|
|
47224
|
+
/**
|
|
47225
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
47226
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
47227
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-overflowTwinConfig)
|
|
47228
|
+
*/
|
|
47229
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
47147
47230
|
/**
|
|
47148
47231
|
* This implies that the picker will display an anchor pointer, but also means that the picker will align closer
|
|
47149
47232
|
* to the input field so that the pointer pierces the [pickerAlignElement](https://bryntum.com/products/grid/docs/api/Core/widget/Combo#config-pickerAlignElement)
|
|
@@ -48121,6 +48204,12 @@ type GridChartDesignerConfig = {
|
|
|
48121
48204
|
* @property {boolean} immediate Set to `true` to receive resize notifications immediately.
|
|
48122
48205
|
*/
|
|
48123
48206
|
monitorResize?: boolean|object
|
|
48207
|
+
/**
|
|
48208
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
48209
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
48210
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-overflowTwinConfig)
|
|
48211
|
+
*/
|
|
48212
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
48124
48213
|
/**
|
|
48125
48214
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
48126
48215
|
* [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
|
|
@@ -49101,6 +49190,12 @@ type GridFieldFilterPickerConfig = {
|
|
|
49101
49190
|
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPicker#config-operators)
|
|
49102
49191
|
*/
|
|
49103
49192
|
operators?: object
|
|
49193
|
+
/**
|
|
49194
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
49195
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
49196
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPicker#config-overflowTwinConfig)
|
|
49197
|
+
*/
|
|
49198
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
49104
49199
|
/**
|
|
49105
49200
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
49106
49201
|
* [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
|
|
@@ -50181,6 +50276,12 @@ type GridFieldFilterPickerGroupConfig = {
|
|
|
50181
50276
|
* [operators](https://bryntum.com/products/grid/docs/api/Core/widget/FieldFilterPicker#config-operators).
|
|
50182
50277
|
*/
|
|
50183
50278
|
operators?: object
|
|
50279
|
+
/**
|
|
50280
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
50281
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
50282
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-overflowTwinConfig)
|
|
50283
|
+
*/
|
|
50284
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
50184
50285
|
/**
|
|
50185
50286
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
50186
50287
|
* [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
|
|
@@ -51234,6 +51335,12 @@ type GroupBarConfig = {
|
|
|
51234
51335
|
* Configure as `true` to allow multi select and allow clicking and key navigation to select multiple chips.
|
|
51235
51336
|
*/
|
|
51236
51337
|
multiSelect?: boolean
|
|
51338
|
+
/**
|
|
51339
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
51340
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
51341
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-overflowTwinConfig)
|
|
51342
|
+
*/
|
|
51343
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
51237
51344
|
/**
|
|
51238
51345
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
51239
51346
|
* [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
|
|
@@ -52498,6 +52605,12 @@ type TreeComboConfig = {
|
|
|
52498
52605
|
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/TreeCombo#config-name)
|
|
52499
52606
|
*/
|
|
52500
52607
|
name?: string
|
|
52608
|
+
/**
|
|
52609
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
52610
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
52611
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/TreeCombo#config-overflowTwinConfig)
|
|
52612
|
+
*/
|
|
52613
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
52501
52614
|
/**
|
|
52502
52615
|
* This implies that the picker will display an anchor pointer, but also means that the picker will align closer
|
|
52503
52616
|
* to the input field so that the pointer pierces the [pickerAlignElement](https://bryntum.com/products/grid/docs/api/Core/widget/Combo#config-pickerAlignElement)
|