@bryntum/grid-trial 7.3.1 → 7.3.2
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 +522 -5
- package/grid.module.js +40 -40
- package/grid.thin.d.ts +77 -2
- package/grid.umd.js +41 -41
- 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
|
@@ -16031,6 +16031,8 @@ type CellTooltipConfig = {
|
|
|
16031
16031
|
/**
|
|
16032
16032
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
16033
16033
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
16034
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
16035
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/CellTooltip#config-appendTo)
|
|
16034
16036
|
*/
|
|
16035
16037
|
appendTo?: HTMLElement|string
|
|
16036
16038
|
/**
|
|
@@ -16292,10 +16294,11 @@ type CellTooltipConfig = {
|
|
|
16292
16294
|
* @param {Core.widget.Tooltip} context.tip The tooltip instance
|
|
16293
16295
|
* @param {HTMLElement} context.element The Element for which the Tooltip is monitoring mouse movement
|
|
16294
16296
|
* @param {HTMLElement} context.activeTarget The target element that triggered the show
|
|
16297
|
+
* @param {HTMLElement} [context.forElement] Alias for `activeTarget`, provided for backward compatibility
|
|
16295
16298
|
* @param {Event} context.event The raw DOM event
|
|
16296
16299
|
* @returns {string,Promise<any>}
|
|
16297
16300
|
*/
|
|
16298
|
-
getHtml?: ((context: { tip: Tooltip, element: HTMLElement, activeTarget: HTMLElement, event: Event }) => Promise<string|Promise<any>>)|string
|
|
16301
|
+
getHtml?: ((context: { tip: Tooltip, element: HTMLElement, activeTarget: HTMLElement, forElement?: HTMLElement, event: Event }) => Promise<string|Promise<any>>)|string
|
|
16299
16302
|
/**
|
|
16300
16303
|
* 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`.
|
|
16301
16304
|
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/CellTooltip#config-header)
|
|
@@ -16371,10 +16374,14 @@ type CellTooltipConfig = {
|
|
|
16371
16374
|
inputFieldAlign?: 'start'|'end'
|
|
16372
16375
|
/**
|
|
16373
16376
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
16377
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
16378
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/CellTooltip#config-insertBefore)
|
|
16374
16379
|
*/
|
|
16375
16380
|
insertBefore?: HTMLElement|string
|
|
16376
16381
|
/**
|
|
16377
16382
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
16383
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
16384
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/CellTooltip#config-insertFirst)
|
|
16378
16385
|
*/
|
|
16379
16386
|
insertFirst?: HTMLElement|string
|
|
16380
16387
|
/**
|
|
@@ -30553,6 +30560,8 @@ type GridConfig = {
|
|
|
30553
30560
|
/**
|
|
30554
30561
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
30555
30562
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
30563
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
30564
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#config-appendTo)
|
|
30556
30565
|
*/
|
|
30557
30566
|
appendTo?: HTMLElement|string
|
|
30558
30567
|
/**
|
|
@@ -30867,10 +30876,14 @@ type GridConfig = {
|
|
|
30867
30876
|
inputFieldAlign?: 'start'|'end'
|
|
30868
30877
|
/**
|
|
30869
30878
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
30879
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
30880
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#config-insertBefore)
|
|
30870
30881
|
*/
|
|
30871
30882
|
insertBefore?: HTMLElement|string
|
|
30872
30883
|
/**
|
|
30873
30884
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
30885
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
30886
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#config-insertFirst)
|
|
30874
30887
|
*/
|
|
30875
30888
|
insertFirst?: HTMLElement|string
|
|
30876
30889
|
/**
|
|
@@ -34608,6 +34621,8 @@ type GridBaseConfig = {
|
|
|
34608
34621
|
/**
|
|
34609
34622
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
34610
34623
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
34624
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
34625
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-appendTo)
|
|
34611
34626
|
*/
|
|
34612
34627
|
appendTo?: HTMLElement|string
|
|
34613
34628
|
/**
|
|
@@ -34922,10 +34937,14 @@ type GridBaseConfig = {
|
|
|
34922
34937
|
inputFieldAlign?: 'start'|'end'
|
|
34923
34938
|
/**
|
|
34924
34939
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
34940
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
34941
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-insertBefore)
|
|
34925
34942
|
*/
|
|
34926
34943
|
insertBefore?: HTMLElement|string
|
|
34927
34944
|
/**
|
|
34928
34945
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
34946
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
34947
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-insertFirst)
|
|
34929
34948
|
*/
|
|
34930
34949
|
insertFirst?: HTMLElement|string
|
|
34931
34950
|
/**
|
|
@@ -41080,6 +41099,8 @@ type TreeGridConfig = {
|
|
|
41080
41099
|
/**
|
|
41081
41100
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
41082
41101
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
41102
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
41103
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/TreeGrid#config-appendTo)
|
|
41083
41104
|
*/
|
|
41084
41105
|
appendTo?: HTMLElement|string
|
|
41085
41106
|
/**
|
|
@@ -41394,10 +41415,14 @@ type TreeGridConfig = {
|
|
|
41394
41415
|
inputFieldAlign?: 'start'|'end'
|
|
41395
41416
|
/**
|
|
41396
41417
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
41418
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
41419
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/TreeGrid#config-insertBefore)
|
|
41397
41420
|
*/
|
|
41398
41421
|
insertBefore?: HTMLElement|string
|
|
41399
41422
|
/**
|
|
41400
41423
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
41424
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
41425
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/TreeGrid#config-insertFirst)
|
|
41401
41426
|
*/
|
|
41402
41427
|
insertFirst?: HTMLElement|string
|
|
41403
41428
|
/**
|
|
@@ -43391,6 +43416,8 @@ type ExportDialogConfig = {
|
|
|
43391
43416
|
/**
|
|
43392
43417
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
43393
43418
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
43419
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
43420
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/export/ExportDialog#config-appendTo)
|
|
43394
43421
|
*/
|
|
43395
43422
|
appendTo?: HTMLElement|string
|
|
43396
43423
|
/**
|
|
@@ -43692,10 +43719,14 @@ type ExportDialogConfig = {
|
|
|
43692
43719
|
inputFieldAlign?: 'start'|'end'
|
|
43693
43720
|
/**
|
|
43694
43721
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
43722
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
43723
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/export/ExportDialog#config-insertBefore)
|
|
43695
43724
|
*/
|
|
43696
43725
|
insertBefore?: HTMLElement|string
|
|
43697
43726
|
/**
|
|
43698
43727
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
43728
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
43729
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/export/ExportDialog#config-insertFirst)
|
|
43699
43730
|
*/
|
|
43700
43731
|
insertFirst?: HTMLElement|string
|
|
43701
43732
|
/**
|
|
@@ -45390,6 +45421,8 @@ type AIFilterFieldConfig = {
|
|
|
45390
45421
|
/**
|
|
45391
45422
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
45392
45423
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
45424
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
45425
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-appendTo)
|
|
45393
45426
|
*/
|
|
45394
45427
|
appendTo?: HTMLElement|string
|
|
45395
45428
|
/**
|
|
@@ -45654,10 +45687,14 @@ type AIFilterFieldConfig = {
|
|
|
45654
45687
|
inputWidth?: string|number
|
|
45655
45688
|
/**
|
|
45656
45689
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
45690
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
45691
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-insertBefore)
|
|
45657
45692
|
*/
|
|
45658
45693
|
insertBefore?: HTMLElement|string
|
|
45659
45694
|
/**
|
|
45660
45695
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
45696
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
45697
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-insertFirst)
|
|
45661
45698
|
*/
|
|
45662
45699
|
insertFirst?: HTMLElement|string
|
|
45663
45700
|
/**
|
|
@@ -46536,6 +46573,8 @@ type ChecklistFilterComboConfig = {
|
|
|
46536
46573
|
/**
|
|
46537
46574
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
46538
46575
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
46576
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
46577
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-appendTo)
|
|
46539
46578
|
*/
|
|
46540
46579
|
appendTo?: HTMLElement|string
|
|
46541
46580
|
/**
|
|
@@ -46898,10 +46937,14 @@ type ChecklistFilterComboConfig = {
|
|
|
46898
46937
|
inputWidth?: string|number
|
|
46899
46938
|
/**
|
|
46900
46939
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
46940
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
46941
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-insertBefore)
|
|
46901
46942
|
*/
|
|
46902
46943
|
insertBefore?: HTMLElement|string
|
|
46903
46944
|
/**
|
|
46904
46945
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
46946
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
46947
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-insertFirst)
|
|
46905
46948
|
*/
|
|
46906
46949
|
insertFirst?: HTMLElement|string
|
|
46907
46950
|
/**
|
|
@@ -47778,6 +47821,8 @@ type GridChartDesignerConfig = {
|
|
|
47778
47821
|
/**
|
|
47779
47822
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
47780
47823
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
47824
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
47825
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-appendTo)
|
|
47781
47826
|
*/
|
|
47782
47827
|
appendTo?: HTMLElement|string
|
|
47783
47828
|
/**
|
|
@@ -47953,10 +47998,14 @@ type GridChartDesignerConfig = {
|
|
|
47953
47998
|
ignoreParentReadOnly?: boolean
|
|
47954
47999
|
/**
|
|
47955
48000
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
48001
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
48002
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-insertBefore)
|
|
47956
48003
|
*/
|
|
47957
48004
|
insertBefore?: HTMLElement|string
|
|
47958
48005
|
/**
|
|
47959
48006
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
48007
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
48008
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-insertFirst)
|
|
47960
48009
|
*/
|
|
47961
48010
|
insertFirst?: HTMLElement|string
|
|
47962
48011
|
/**
|
|
@@ -48639,6 +48688,8 @@ type GridFieldFilterPickerConfig = {
|
|
|
48639
48688
|
/**
|
|
48640
48689
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
48641
48690
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
48691
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
48692
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPicker#config-appendTo)
|
|
48642
48693
|
*/
|
|
48643
48694
|
appendTo?: HTMLElement|string
|
|
48644
48695
|
/**
|
|
@@ -48873,10 +48924,14 @@ type GridFieldFilterPickerConfig = {
|
|
|
48873
48924
|
inputFieldAlign?: 'start'|'end'
|
|
48874
48925
|
/**
|
|
48875
48926
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
48927
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
48928
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPicker#config-insertBefore)
|
|
48876
48929
|
*/
|
|
48877
48930
|
insertBefore?: HTMLElement|string
|
|
48878
48931
|
/**
|
|
48879
48932
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
48933
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
48934
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPicker#config-insertFirst)
|
|
48880
48935
|
*/
|
|
48881
48936
|
insertFirst?: HTMLElement|string
|
|
48882
48937
|
/**
|
|
@@ -49698,6 +49753,8 @@ type GridFieldFilterPickerGroupConfig = {
|
|
|
49698
49753
|
/**
|
|
49699
49754
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
49700
49755
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
49756
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
49757
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-appendTo)
|
|
49701
49758
|
*/
|
|
49702
49759
|
appendTo?: HTMLElement|string
|
|
49703
49760
|
/**
|
|
@@ -49944,10 +50001,14 @@ type GridFieldFilterPickerGroupConfig = {
|
|
|
49944
50001
|
inputFieldAlign?: 'start'|'end'
|
|
49945
50002
|
/**
|
|
49946
50003
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
50004
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
50005
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-insertBefore)
|
|
49947
50006
|
*/
|
|
49948
50007
|
insertBefore?: HTMLElement|string
|
|
49949
50008
|
/**
|
|
49950
50009
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
50010
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
50011
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-insertFirst)
|
|
49951
50012
|
*/
|
|
49952
50013
|
insertFirst?: HTMLElement|string
|
|
49953
50014
|
/**
|
|
@@ -50794,6 +50855,8 @@ type GroupBarConfig = {
|
|
|
50794
50855
|
/**
|
|
50795
50856
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
50796
50857
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
50858
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
50859
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-appendTo)
|
|
50797
50860
|
*/
|
|
50798
50861
|
appendTo?: HTMLElement|string
|
|
50799
50862
|
/**
|
|
@@ -50843,9 +50906,11 @@ type GroupBarConfig = {
|
|
|
50843
50906
|
/**
|
|
50844
50907
|
* If [closable](https://bryntum.com/products/grid/docs/api/Core/widget/ChipView#config-closable) is `true`, this is the name of a callback function to handle what the "close"
|
|
50845
50908
|
* action means. If not provided, the record representing the chip is removed from the store.
|
|
50909
|
+
* @param {Core.data.Model[]} records Records to be closed
|
|
50910
|
+
* @param {object} options Close options
|
|
50846
50911
|
* @returns {void}
|
|
50847
50912
|
*/
|
|
50848
|
-
closeHandler?: string|(() => void)
|
|
50913
|
+
closeHandler?: string|((records: Model[], options: object) => void)
|
|
50849
50914
|
/**
|
|
50850
50915
|
* Custom CSS classes to add to element.
|
|
50851
50916
|
* May be specified as a space separated string, or as an object in which property names
|
|
@@ -51020,10 +51085,14 @@ type GroupBarConfig = {
|
|
|
51020
51085
|
ignoreParentReadOnly?: boolean
|
|
51021
51086
|
/**
|
|
51022
51087
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
51088
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
51089
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-insertBefore)
|
|
51023
51090
|
*/
|
|
51024
51091
|
insertBefore?: HTMLElement|string
|
|
51025
51092
|
/**
|
|
51026
51093
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
51094
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
51095
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-insertFirst)
|
|
51027
51096
|
*/
|
|
51028
51097
|
insertFirst?: HTMLElement|string
|
|
51029
51098
|
/**
|
|
@@ -51853,6 +51922,8 @@ type TreeComboConfig = {
|
|
|
51853
51922
|
/**
|
|
51854
51923
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
51855
51924
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
51925
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
51926
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/TreeCombo#config-appendTo)
|
|
51856
51927
|
*/
|
|
51857
51928
|
appendTo?: HTMLElement|string
|
|
51858
51929
|
/**
|
|
@@ -52215,10 +52286,14 @@ type TreeComboConfig = {
|
|
|
52215
52286
|
inputWidth?: string|number
|
|
52216
52287
|
/**
|
|
52217
52288
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
52289
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
52290
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/TreeCombo#config-insertBefore)
|
|
52218
52291
|
*/
|
|
52219
52292
|
insertBefore?: HTMLElement|string
|
|
52220
52293
|
/**
|
|
52221
52294
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
52295
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
52296
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/TreeCombo#config-insertFirst)
|
|
52222
52297
|
*/
|
|
52223
52298
|
insertFirst?: HTMLElement|string
|
|
52224
52299
|
/**
|