@bryntum/grid-thin-trial 7.3.5 → 7.3.6
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/AGENTS.md +2 -2
- package/CLAUDE.md +2 -2
- package/README.md +2 -1
- package/grid.d.ts +275 -140
- package/lib/column/Column.js +1 -1
- package/lib/feature/CellCopyPaste.js +1 -1
- package/lib/feature/CellMenu.js +1 -1
- package/lib/feature/ColumnPicker.js +1 -1
- package/lib/feature/Filter.js +1 -1
- package/lib/feature/FilterBar.js +1 -1
- package/lib/feature/GridFeatureManager.js +1 -1
- package/lib/feature/Group.js +1 -1
- package/lib/feature/MergeCells.js +1 -1
- package/lib/feature/RowCopyPaste.js +1 -1
- package/lib/feature/Search.js +1 -1
- package/lib/feature/Sort.js +1 -1
- package/lib/feature/Split.js +1 -1
- package/lib/feature/TreeGroup.js +1 -1
- package/lib/row/Row.js +1 -1
- package/lib/view/GridBase.js +1 -1
- package/lib/view/SubGrid.js +1 -1
- package/lib/view/mixin/GridSelection.js +1 -1
- package/lib/widget/ChecklistFilterCombo.js +1 -1
- package/package.json +1 -1
- package/visby-dark.css +3 -0
- package/visby-light.css +3 -0
package/grid.d.ts
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
import { AIBase, AIModelConfiguration, AIModelSelector, AISettingsModel, AISettingsModelConfig, AITool, AIToolConfig,
|
|
2
2
|
AIVoiceActivationConfig, AbstractApiPlugin, AjaxStore, AjaxStoreConfig, AlignSpec, AnimateScrollOptions, Base, BryntumListenerConfig,
|
|
3
|
-
BryntumScrollOptions, ChatButton, ChatButtonConfig, ChipView, ChipViewConfig, Collection, CollectionCompareOperator,
|
|
4
|
-
CollectionFilter, CollectionFilterConfig, CollectionSorter, CollectionSorterConfig, Color, ColorDescriptor, Combo,
|
|
5
|
-
Container, ContextMenuBase, CoreColumn, CoreColumnConfig, CoreContainerItem, CoreContainerItemConfig,
|
|
6
|
-
CoreInputFieldConfig, CoreModelFieldConfig, DataField, DataLoadRequestResponse, DomClassList, DomConfig,
|
|
7
|
-
Duration, DurationConfig, Editor, EditorConfig, EventsClass, FetchOptions, Field, FieldContainer,
|
|
8
|
-
FieldFilterPicker, FieldFilterPickerConfig, FieldFilterPickerGroup, FieldOption, FieldTriggerConfig,
|
|
9
|
-
FormulaProviderConfig, Grouper, InstancePlugin, KeyMap, KeyMapConfig, LazyLoadRequestParams, List, ListConfig,
|
|
10
|
-
LocaleManager, Mask, MaskConfig, Menu, MenuConfig, MenuItem, MenuItemEntry, Model, NumberFormat, NumberFormatConfig,
|
|
11
|
-
PagingRequestParams, PagingToolbar, PagingToolbarConfig, Panel, PanelCollapser, PanelCollapserConfig,
|
|
12
|
-
PanelCollapserOverlayConfig, PanelConfig, PanelHeader, Popup, PopupConfig, ReactJSX, Rectangle, ScrollManager,
|
|
13
|
-
Scroller, ScrollerConfig, Sorter, StateProvider, StateTrackingManager, Store, StoreConfig, StoreSearchResult,
|
|
14
|
-
Tab, TabConfig, TextField, Tool, ToolConfig, Toolbar, ToolbarConfig, ToolbarItems, Tooltip, TooltipConfig,
|
|
15
|
-
VueConfig, Widget } from '@bryntum/core-thin'
|
|
3
|
+
BryntumScrollOptions, CSSStyleConfig, ChatButton, ChatButtonConfig, ChipView, ChipViewConfig, Collection, CollectionCompareOperator,
|
|
4
|
+
CollectionConfig, CollectionFilter, CollectionFilterConfig, CollectionSorter, CollectionSorterConfig, Color, ColorDescriptor, Combo,
|
|
5
|
+
ComboConfig, Container, ContextMenuBase, CoreColumn, CoreColumnConfig, CoreContainerItem, CoreContainerItemConfig,
|
|
6
|
+
CoreContainerLayoutConfig, CoreInputFieldConfig, CoreModelFieldConfig, DataField, DataLoadRequestResponse, DomClassList, DomConfig,
|
|
7
|
+
DragHelper, DragHelperConfig, Duration, DurationConfig, Editor, EditorConfig, EventsClass, FetchOptions, Field, FieldContainer,
|
|
8
|
+
FieldContainerConfig, FieldFilterPicker, FieldFilterPickerConfig, FieldFilterPickerGroup, FieldOption, FieldTriggerConfig,
|
|
9
|
+
FormulaProvider, FormulaProviderConfig, Grouper, InstancePlugin, KeyMap, KeyMapConfig, LazyLoadRequestParams, List, ListConfig,
|
|
10
|
+
LocaleHelper, LocaleManager, Mask, MaskConfig, Menu, MenuConfig, MenuItem, MenuItemEntry, Model, NumberFormat, NumberFormatConfig,
|
|
11
|
+
OverflowTwinConfig, PagingRequestParams, PagingToolbar, PagingToolbarConfig, Panel, PanelCollapser, PanelCollapserConfig,
|
|
12
|
+
PanelCollapserOverlay, PanelCollapserOverlayConfig, PanelConfig, PanelHeader, Popup, PopupConfig, ReactJSX, Rectangle, ScrollManager,
|
|
13
|
+
ScrollManagerConfig, Scroller, ScrollerConfig, Sorter, StateProvider, StateTrackingManager, Store, StoreConfig, StoreSearchResult,
|
|
14
|
+
SyncDataOnLoadOptions, Tab, TabConfig, TextField, Tool, ToolConfig, Toolbar, ToolbarConfig, ToolbarItems, Tooltip, TooltipConfig,
|
|
15
|
+
ValueFieldPlaceholders, VueConfig, Widget } from '@bryntum/core-thin'
|
|
16
16
|
|
|
17
17
|
type AnyConstructor<A = any> = new (...input: any[]) => A
|
|
18
18
|
|
|
@@ -1571,8 +1571,9 @@ type AggregateColumnConfig = {
|
|
|
1571
1571
|
*/
|
|
1572
1572
|
hideable?: boolean
|
|
1573
1573
|
/**
|
|
1574
|
-
* By default, any rendered column cell content is HTML-encoded. Set this
|
|
1575
|
-
*
|
|
1574
|
+
* By default, any rendered column cell content is HTML-encoded (`true`). Set this to `false` to allow rendering
|
|
1575
|
+
* HTML elements.
|
|
1576
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/column/AggregateColumn#config-htmlEncode)
|
|
1576
1577
|
*/
|
|
1577
1578
|
htmlEncode?: boolean
|
|
1578
1579
|
/**
|
|
@@ -2303,8 +2304,9 @@ type ChartColumnConfig = {
|
|
|
2303
2304
|
*/
|
|
2304
2305
|
hideable?: boolean
|
|
2305
2306
|
/**
|
|
2306
|
-
* By default, any rendered column cell content is HTML-encoded. Set this
|
|
2307
|
-
*
|
|
2307
|
+
* By default, any rendered column cell content is HTML-encoded (`true`). Set this to `false` to allow rendering
|
|
2308
|
+
* HTML elements.
|
|
2309
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/column/ChartColumn#config-htmlEncode)
|
|
2308
2310
|
*/
|
|
2309
2311
|
htmlEncode?: boolean
|
|
2310
2312
|
/**
|
|
@@ -3040,8 +3042,9 @@ type CheckColumnConfig = {
|
|
|
3040
3042
|
*/
|
|
3041
3043
|
hideable?: boolean
|
|
3042
3044
|
/**
|
|
3043
|
-
* By default, any rendered column cell content is HTML-encoded. Set this
|
|
3044
|
-
*
|
|
3045
|
+
* By default, any rendered column cell content is HTML-encoded (`true`). Set this to `false` to allow rendering
|
|
3046
|
+
* HTML elements.
|
|
3047
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/column/CheckColumn#config-htmlEncode)
|
|
3045
3048
|
*/
|
|
3046
3049
|
htmlEncode?: boolean
|
|
3047
3050
|
/**
|
|
@@ -3792,8 +3795,9 @@ type ColorColumnConfig = {
|
|
|
3792
3795
|
*/
|
|
3793
3796
|
hideable?: boolean
|
|
3794
3797
|
/**
|
|
3795
|
-
* By default, any rendered column cell content is HTML-encoded. Set this
|
|
3796
|
-
*
|
|
3798
|
+
* By default, any rendered column cell content is HTML-encoded (`true`). Set this to `false` to allow rendering
|
|
3799
|
+
* HTML elements.
|
|
3800
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/column/ColorColumn#config-htmlEncode)
|
|
3797
3801
|
*/
|
|
3798
3802
|
htmlEncode?: boolean
|
|
3799
3803
|
/**
|
|
@@ -4489,8 +4493,9 @@ type ColumnConfig = {
|
|
|
4489
4493
|
*/
|
|
4490
4494
|
hideable?: boolean
|
|
4491
4495
|
/**
|
|
4492
|
-
* By default, any rendered column cell content is HTML-encoded. Set this
|
|
4493
|
-
*
|
|
4496
|
+
* By default, any rendered column cell content is HTML-encoded (`true`). Set this to `false` to allow rendering
|
|
4497
|
+
* HTML elements.
|
|
4498
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/column/Column#config-htmlEncode)
|
|
4494
4499
|
*/
|
|
4495
4500
|
htmlEncode?: boolean
|
|
4496
4501
|
/**
|
|
@@ -5025,8 +5030,8 @@ export class Column extends Model {
|
|
|
5025
5030
|
*/
|
|
5026
5031
|
hideable: boolean
|
|
5027
5032
|
/**
|
|
5028
|
-
* By default, any rendered column cell content is HTML-encoded. Set this
|
|
5029
|
-
*
|
|
5033
|
+
* By default, any rendered column cell content is HTML-encoded (`true`). Set this to `false` to allow rendering
|
|
5034
|
+
* HTML elements.
|
|
5030
5035
|
*/
|
|
5031
5036
|
htmlEncode: boolean
|
|
5032
5037
|
/**
|
|
@@ -5774,8 +5779,9 @@ type CurrencyColumnConfig = {
|
|
|
5774
5779
|
*/
|
|
5775
5780
|
hideable?: boolean
|
|
5776
5781
|
/**
|
|
5777
|
-
* By default, any rendered column cell content is HTML-encoded. Set this
|
|
5778
|
-
*
|
|
5782
|
+
* By default, any rendered column cell content is HTML-encoded (`true`). Set this to `false` to allow rendering
|
|
5783
|
+
* HTML elements.
|
|
5784
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/column/CurrencyColumn#config-htmlEncode)
|
|
5779
5785
|
*/
|
|
5780
5786
|
htmlEncode?: boolean
|
|
5781
5787
|
/**
|
|
@@ -6483,8 +6489,9 @@ type DateColumnConfig = {
|
|
|
6483
6489
|
*/
|
|
6484
6490
|
hideable?: boolean
|
|
6485
6491
|
/**
|
|
6486
|
-
* By default, any rendered column cell content is HTML-encoded. Set this
|
|
6487
|
-
*
|
|
6492
|
+
* By default, any rendered column cell content is HTML-encoded (`true`). Set this to `false` to allow rendering
|
|
6493
|
+
* HTML elements.
|
|
6494
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/column/DateColumn#config-htmlEncode)
|
|
6488
6495
|
*/
|
|
6489
6496
|
htmlEncode?: boolean
|
|
6490
6497
|
/**
|
|
@@ -7207,8 +7214,9 @@ type NumberColumnConfig = {
|
|
|
7207
7214
|
*/
|
|
7208
7215
|
hideable?: boolean
|
|
7209
7216
|
/**
|
|
7210
|
-
* By default, any rendered column cell content is HTML-encoded. Set this
|
|
7211
|
-
*
|
|
7217
|
+
* By default, any rendered column cell content is HTML-encoded (`true`). Set this to `false` to allow rendering
|
|
7218
|
+
* HTML elements.
|
|
7219
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/column/NumberColumn#config-htmlEncode)
|
|
7212
7220
|
*/
|
|
7213
7221
|
htmlEncode?: boolean
|
|
7214
7222
|
/**
|
|
@@ -8685,8 +8693,9 @@ type RatingColumnConfig = {
|
|
|
8685
8693
|
*/
|
|
8686
8694
|
hideable?: boolean
|
|
8687
8695
|
/**
|
|
8688
|
-
* By default, any rendered column cell content is HTML-encoded. Set this
|
|
8689
|
-
*
|
|
8696
|
+
* By default, any rendered column cell content is HTML-encoded (`true`). Set this to `false` to allow rendering
|
|
8697
|
+
* HTML elements.
|
|
8698
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/column/RatingColumn#config-htmlEncode)
|
|
8690
8699
|
*/
|
|
8691
8700
|
htmlEncode?: boolean
|
|
8692
8701
|
/**
|
|
@@ -9331,8 +9340,9 @@ type RowNumberColumnConfig = {
|
|
|
9331
9340
|
*/
|
|
9332
9341
|
hideable?: boolean
|
|
9333
9342
|
/**
|
|
9334
|
-
* By default, any rendered column cell content is HTML-encoded. Set this
|
|
9335
|
-
*
|
|
9343
|
+
* By default, any rendered column cell content is HTML-encoded (`true`). Set this to `false` to allow rendering
|
|
9344
|
+
* HTML elements.
|
|
9345
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/column/RowNumberColumn#config-htmlEncode)
|
|
9336
9346
|
*/
|
|
9337
9347
|
htmlEncode?: boolean
|
|
9338
9348
|
/**
|
|
@@ -9975,8 +9985,9 @@ type SparklineColumnConfig = {
|
|
|
9975
9985
|
*/
|
|
9976
9986
|
highlightMinMax?: boolean
|
|
9977
9987
|
/**
|
|
9978
|
-
* By default, any rendered column cell content is HTML-encoded. Set this
|
|
9979
|
-
*
|
|
9988
|
+
* By default, any rendered column cell content is HTML-encoded (`true`). Set this to `false` to allow rendering
|
|
9989
|
+
* HTML elements.
|
|
9990
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/column/SparklineColumn#config-htmlEncode)
|
|
9980
9991
|
*/
|
|
9981
9992
|
htmlEncode?: boolean
|
|
9982
9993
|
/**
|
|
@@ -10651,8 +10662,9 @@ type TemplateColumnConfig = {
|
|
|
10651
10662
|
*/
|
|
10652
10663
|
hideable?: boolean
|
|
10653
10664
|
/**
|
|
10654
|
-
* By default, any rendered column cell content is HTML-encoded. Set this
|
|
10655
|
-
*
|
|
10665
|
+
* By default, any rendered column cell content is HTML-encoded (`true`). Set this to `false` to allow rendering
|
|
10666
|
+
* HTML elements.
|
|
10667
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/column/TemplateColumn#config-htmlEncode)
|
|
10656
10668
|
*/
|
|
10657
10669
|
htmlEncode?: boolean
|
|
10658
10670
|
/**
|
|
@@ -11342,8 +11354,9 @@ type TimeColumnConfig = {
|
|
|
11342
11354
|
*/
|
|
11343
11355
|
hideable?: boolean
|
|
11344
11356
|
/**
|
|
11345
|
-
* By default, any rendered column cell content is HTML-encoded. Set this
|
|
11346
|
-
*
|
|
11357
|
+
* By default, any rendered column cell content is HTML-encoded (`true`). Set this to `false` to allow rendering
|
|
11358
|
+
* HTML elements.
|
|
11359
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/column/TimeColumn#config-htmlEncode)
|
|
11347
11360
|
*/
|
|
11348
11361
|
htmlEncode?: boolean
|
|
11349
11362
|
/**
|
|
@@ -12036,8 +12049,9 @@ type TreeColumnConfig = {
|
|
|
12036
12049
|
*/
|
|
12037
12050
|
hideable?: boolean
|
|
12038
12051
|
/**
|
|
12039
|
-
* By default, any rendered column cell content is HTML-encoded. Set this
|
|
12040
|
-
*
|
|
12052
|
+
* By default, any rendered column cell content is HTML-encoded (`true`). Set this to `false` to allow rendering
|
|
12053
|
+
* HTML elements.
|
|
12054
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/column/TreeColumn#config-htmlEncode)
|
|
12041
12055
|
*/
|
|
12042
12056
|
htmlEncode?: boolean
|
|
12043
12057
|
/**
|
|
@@ -12756,8 +12770,9 @@ type WidgetColumnConfig = {
|
|
|
12756
12770
|
*/
|
|
12757
12771
|
hideable?: boolean
|
|
12758
12772
|
/**
|
|
12759
|
-
* By default, any rendered column cell content is HTML-encoded. Set this
|
|
12760
|
-
*
|
|
12773
|
+
* By default, any rendered column cell content is HTML-encoded (`true`). Set this to `false` to allow rendering
|
|
12774
|
+
* HTML elements.
|
|
12775
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/column/WidgetColumn#config-htmlEncode)
|
|
12761
12776
|
*/
|
|
12762
12777
|
htmlEncode?: boolean
|
|
12763
12778
|
/**
|
|
@@ -16073,7 +16088,7 @@ type CellTooltipConfig = {
|
|
|
16073
16088
|
*/
|
|
16074
16089
|
autoShow?: boolean
|
|
16075
16090
|
/**
|
|
16076
|
-
* Update assigned [record](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-record) automatically on field changes
|
|
16091
|
+
* Update assigned [record](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-record) automatically on field changes.
|
|
16077
16092
|
*/
|
|
16078
16093
|
autoUpdateRecord?: boolean
|
|
16079
16094
|
/**
|
|
@@ -16711,9 +16726,10 @@ type CellTooltipConfig = {
|
|
|
16711
16726
|
*/
|
|
16712
16727
|
strips?: Record<string, GridContainerItemConfig>
|
|
16713
16728
|
/**
|
|
16714
|
-
* Custom style spec to add to element
|
|
16729
|
+
* Custom style spec to add to element, either as a cssText string:
|
|
16730
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/CellTooltip#config-style)
|
|
16715
16731
|
*/
|
|
16716
|
-
style?:
|
|
16732
|
+
style?: CSSStyleConfig
|
|
16717
16733
|
/**
|
|
16718
16734
|
* 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
|
|
16719
16735
|
* [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
|
|
@@ -19339,6 +19355,7 @@ export class GridFeatureManager {
|
|
|
19339
19355
|
* @param {Function} featureClass The feature class constructor to register
|
|
19340
19356
|
* @param {boolean} [onByDefault] Specify true to have the feature enabled per default
|
|
19341
19357
|
* @param {string,string[]} [forType] Specify a type to let the class applying the feature to determine if it should use it
|
|
19358
|
+
* @deprecated 7.3.6 GridFeatureManager will be removed in 8.0.0, where a feature registers itself when extending one of the new feature base classes
|
|
19342
19359
|
*/
|
|
19343
19360
|
static registerFeature(featureClass: typeof InstancePlugin, onByDefault?: boolean, forType?: string|string[]): void;
|
|
19344
19361
|
}
|
|
@@ -29202,6 +29219,23 @@ type GridListenersTypes = {
|
|
|
29202
29219
|
* @param {Core.widget.Widget} event.source The widget
|
|
29203
29220
|
*/
|
|
29204
29221
|
hide: (event: { source: Widget }) => void
|
|
29222
|
+
/**
|
|
29223
|
+
* Fires when the Grid is scrolling horizontally in one of its SubGrids.
|
|
29224
|
+
* @param {object} event Event object
|
|
29225
|
+
* @param {Grid.view.GridBase} event.source The firing Grid instance
|
|
29226
|
+
* @param {Grid.view.SubGrid} event.subGrid The scrolling SubGrid instance
|
|
29227
|
+
* @param {number} event.scrollLeft The horizontal scroll position
|
|
29228
|
+
* @param {number} event.scrollX The horizontal scroll position in the RTL-safe coordinate system
|
|
29229
|
+
*/
|
|
29230
|
+
horizontalScroll: (event: { source: GridBase, subGrid: SubGrid, scrollLeft: number, scrollX: number }) => void
|
|
29231
|
+
/**
|
|
29232
|
+
* Fires after the Grid is done scrolling horizontally in one of its SubGrids.
|
|
29233
|
+
* @param {object} event Event object
|
|
29234
|
+
* @param {Grid.view.GridBase} event.source The firing Grid instance
|
|
29235
|
+
* @param {Grid.view.SubGrid} event.subGrid The scrolling SubGrid instance
|
|
29236
|
+
* @param {number} [event.scrollLeft] The horizontal scroll position. Only supplied when the event follows a SubGrid resize, the scroll driven path does not report a position
|
|
29237
|
+
*/
|
|
29238
|
+
horizontalScrollEnd: (event: { source: GridBase, subGrid: SubGrid, scrollLeft?: number }) => void
|
|
29205
29239
|
/**
|
|
29206
29240
|
* Fires when row locking is enabled.
|
|
29207
29241
|
* @param {object} event Event object
|
|
@@ -30217,6 +30251,23 @@ type GridListeners = {
|
|
|
30217
30251
|
* @param {Core.widget.Widget} event.source The widget
|
|
30218
30252
|
*/
|
|
30219
30253
|
hide?: ((event: { source: Widget }) => void)|string
|
|
30254
|
+
/**
|
|
30255
|
+
* Fires when the Grid is scrolling horizontally in one of its SubGrids.
|
|
30256
|
+
* @param {object} event Event object
|
|
30257
|
+
* @param {Grid.view.GridBase} event.source The firing Grid instance
|
|
30258
|
+
* @param {Grid.view.SubGrid} event.subGrid The scrolling SubGrid instance
|
|
30259
|
+
* @param {number} event.scrollLeft The horizontal scroll position
|
|
30260
|
+
* @param {number} event.scrollX The horizontal scroll position in the RTL-safe coordinate system
|
|
30261
|
+
*/
|
|
30262
|
+
horizontalScroll?: ((event: { source: GridBase, subGrid: SubGrid, scrollLeft: number, scrollX: number }) => void)|string
|
|
30263
|
+
/**
|
|
30264
|
+
* Fires after the Grid is done scrolling horizontally in one of its SubGrids.
|
|
30265
|
+
* @param {object} event Event object
|
|
30266
|
+
* @param {Grid.view.GridBase} event.source The firing Grid instance
|
|
30267
|
+
* @param {Grid.view.SubGrid} event.subGrid The scrolling SubGrid instance
|
|
30268
|
+
* @param {number} [event.scrollLeft] The horizontal scroll position. Only supplied when the event follows a SubGrid resize, the scroll driven path does not report a position
|
|
30269
|
+
*/
|
|
30270
|
+
horizontalScrollEnd?: ((event: { source: GridBase, subGrid: SubGrid, scrollLeft?: number }) => void)|string
|
|
30220
30271
|
/**
|
|
30221
30272
|
* Fires when row locking is enabled.
|
|
30222
30273
|
* @param {object} event Event object
|
|
@@ -31222,9 +31273,10 @@ type GridConfig = {
|
|
|
31222
31273
|
*/
|
|
31223
31274
|
strips?: Record<string, GridContainerItemConfig>
|
|
31224
31275
|
/**
|
|
31225
|
-
* Custom style spec to add to element
|
|
31276
|
+
* Custom style spec to add to element, either as a cssText string:
|
|
31277
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#config-style)
|
|
31226
31278
|
*/
|
|
31227
|
-
style?:
|
|
31279
|
+
style?: CSSStyleConfig
|
|
31228
31280
|
/**
|
|
31229
31281
|
* An object containing sub grid configuration objects keyed by a `region` property.
|
|
31230
31282
|
* By default, grid has a 'locked' region (if configured with locked columns) and a 'normal' region.
|
|
@@ -32039,6 +32091,23 @@ type GridConfig = {
|
|
|
32039
32091
|
* @param {Core.widget.Widget} event.source The widget
|
|
32040
32092
|
*/
|
|
32041
32093
|
onHide?: ((event: { source: Widget }) => void)|string
|
|
32094
|
+
/**
|
|
32095
|
+
* Fires when the Grid is scrolling horizontally in one of its SubGrids.
|
|
32096
|
+
* @param {object} event Event object
|
|
32097
|
+
* @param {Grid.view.GridBase} event.source The firing Grid instance
|
|
32098
|
+
* @param {Grid.view.SubGrid} event.subGrid The scrolling SubGrid instance
|
|
32099
|
+
* @param {number} event.scrollLeft The horizontal scroll position
|
|
32100
|
+
* @param {number} event.scrollX The horizontal scroll position in the RTL-safe coordinate system
|
|
32101
|
+
*/
|
|
32102
|
+
onHorizontalScroll?: ((event: { source: GridBase, subGrid: SubGrid, scrollLeft: number, scrollX: number }) => void)|string
|
|
32103
|
+
/**
|
|
32104
|
+
* Fires after the Grid is done scrolling horizontally in one of its SubGrids.
|
|
32105
|
+
* @param {object} event Event object
|
|
32106
|
+
* @param {Grid.view.GridBase} event.source The firing Grid instance
|
|
32107
|
+
* @param {Grid.view.SubGrid} event.subGrid The scrolling SubGrid instance
|
|
32108
|
+
* @param {number} [event.scrollLeft] The horizontal scroll position. Only supplied when the event follows a SubGrid resize, the scroll driven path does not report a position
|
|
32109
|
+
*/
|
|
32110
|
+
onHorizontalScrollEnd?: ((event: { source: GridBase, subGrid: SubGrid, scrollLeft?: number }) => void)|string
|
|
32042
32111
|
/**
|
|
32043
32112
|
* Fires when row locking is enabled.
|
|
32044
32113
|
* @param {object} event Event object
|
|
@@ -33270,6 +33339,23 @@ type GridBaseListenersTypes = {
|
|
|
33270
33339
|
* @param {Core.widget.Widget} event.source The widget
|
|
33271
33340
|
*/
|
|
33272
33341
|
hide: (event: { source: Widget }) => void
|
|
33342
|
+
/**
|
|
33343
|
+
* Fires when the Grid is scrolling horizontally in one of its SubGrids.
|
|
33344
|
+
* @param {object} event Event object
|
|
33345
|
+
* @param {Grid.view.GridBase} event.source The firing Grid instance
|
|
33346
|
+
* @param {Grid.view.SubGrid} event.subGrid The scrolling SubGrid instance
|
|
33347
|
+
* @param {number} event.scrollLeft The horizontal scroll position
|
|
33348
|
+
* @param {number} event.scrollX The horizontal scroll position in the RTL-safe coordinate system
|
|
33349
|
+
*/
|
|
33350
|
+
horizontalScroll: (event: { source: GridBase, subGrid: SubGrid, scrollLeft: number, scrollX: number }) => void
|
|
33351
|
+
/**
|
|
33352
|
+
* Fires after the Grid is done scrolling horizontally in one of its SubGrids.
|
|
33353
|
+
* @param {object} event Event object
|
|
33354
|
+
* @param {Grid.view.GridBase} event.source The firing Grid instance
|
|
33355
|
+
* @param {Grid.view.SubGrid} event.subGrid The scrolling SubGrid instance
|
|
33356
|
+
* @param {number} [event.scrollLeft] The horizontal scroll position. Only supplied when the event follows a SubGrid resize, the scroll driven path does not report a position
|
|
33357
|
+
*/
|
|
33358
|
+
horizontalScrollEnd: (event: { source: GridBase, subGrid: SubGrid, scrollLeft?: number }) => void
|
|
33273
33359
|
/**
|
|
33274
33360
|
* Fires when row locking is enabled.
|
|
33275
33361
|
* @param {object} event Event object
|
|
@@ -34285,6 +34371,23 @@ type GridBaseListeners = {
|
|
|
34285
34371
|
* @param {Core.widget.Widget} event.source The widget
|
|
34286
34372
|
*/
|
|
34287
34373
|
hide?: ((event: { source: Widget }) => void)|string
|
|
34374
|
+
/**
|
|
34375
|
+
* Fires when the Grid is scrolling horizontally in one of its SubGrids.
|
|
34376
|
+
* @param {object} event Event object
|
|
34377
|
+
* @param {Grid.view.GridBase} event.source The firing Grid instance
|
|
34378
|
+
* @param {Grid.view.SubGrid} event.subGrid The scrolling SubGrid instance
|
|
34379
|
+
* @param {number} event.scrollLeft The horizontal scroll position
|
|
34380
|
+
* @param {number} event.scrollX The horizontal scroll position in the RTL-safe coordinate system
|
|
34381
|
+
*/
|
|
34382
|
+
horizontalScroll?: ((event: { source: GridBase, subGrid: SubGrid, scrollLeft: number, scrollX: number }) => void)|string
|
|
34383
|
+
/**
|
|
34384
|
+
* Fires after the Grid is done scrolling horizontally in one of its SubGrids.
|
|
34385
|
+
* @param {object} event Event object
|
|
34386
|
+
* @param {Grid.view.GridBase} event.source The firing Grid instance
|
|
34387
|
+
* @param {Grid.view.SubGrid} event.subGrid The scrolling SubGrid instance
|
|
34388
|
+
* @param {number} [event.scrollLeft] The horizontal scroll position. Only supplied when the event follows a SubGrid resize, the scroll driven path does not report a position
|
|
34389
|
+
*/
|
|
34390
|
+
horizontalScrollEnd?: ((event: { source: GridBase, subGrid: SubGrid, scrollLeft?: number }) => void)|string
|
|
34288
34391
|
/**
|
|
34289
34392
|
* Fires when row locking is enabled.
|
|
34290
34393
|
* @param {object} event Event object
|
|
@@ -35289,9 +35392,10 @@ type GridBaseConfig = {
|
|
|
35289
35392
|
*/
|
|
35290
35393
|
strips?: Record<string, GridContainerItemConfig>
|
|
35291
35394
|
/**
|
|
35292
|
-
* Custom style spec to add to element
|
|
35395
|
+
* Custom style spec to add to element, either as a cssText string:
|
|
35396
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-style)
|
|
35293
35397
|
*/
|
|
35294
|
-
style?:
|
|
35398
|
+
style?: CSSStyleConfig
|
|
35295
35399
|
/**
|
|
35296
35400
|
* An object containing sub grid configuration objects keyed by a `region` property.
|
|
35297
35401
|
* By default, grid has a 'locked' region (if configured with locked columns) and a 'normal' region.
|
|
@@ -36106,6 +36210,23 @@ type GridBaseConfig = {
|
|
|
36106
36210
|
* @param {Core.widget.Widget} event.source The widget
|
|
36107
36211
|
*/
|
|
36108
36212
|
onHide?: ((event: { source: Widget }) => void)|string
|
|
36213
|
+
/**
|
|
36214
|
+
* Fires when the Grid is scrolling horizontally in one of its SubGrids.
|
|
36215
|
+
* @param {object} event Event object
|
|
36216
|
+
* @param {Grid.view.GridBase} event.source The firing Grid instance
|
|
36217
|
+
* @param {Grid.view.SubGrid} event.subGrid The scrolling SubGrid instance
|
|
36218
|
+
* @param {number} event.scrollLeft The horizontal scroll position
|
|
36219
|
+
* @param {number} event.scrollX The horizontal scroll position in the RTL-safe coordinate system
|
|
36220
|
+
*/
|
|
36221
|
+
onHorizontalScroll?: ((event: { source: GridBase, subGrid: SubGrid, scrollLeft: number, scrollX: number }) => void)|string
|
|
36222
|
+
/**
|
|
36223
|
+
* Fires after the Grid is done scrolling horizontally in one of its SubGrids.
|
|
36224
|
+
* @param {object} event Event object
|
|
36225
|
+
* @param {Grid.view.GridBase} event.source The firing Grid instance
|
|
36226
|
+
* @param {Grid.view.SubGrid} event.subGrid The scrolling SubGrid instance
|
|
36227
|
+
* @param {number} [event.scrollLeft] The horizontal scroll position. Only supplied when the event follows a SubGrid resize, the scroll driven path does not report a position
|
|
36228
|
+
*/
|
|
36229
|
+
onHorizontalScrollEnd?: ((event: { source: GridBase, subGrid: SubGrid, scrollLeft?: number }) => void)|string
|
|
36109
36230
|
/**
|
|
36110
36231
|
* Fires when row locking is enabled.
|
|
36111
36232
|
* @param {object} event Event object
|
|
@@ -37364,6 +37485,23 @@ export class GridBase extends Panel {
|
|
|
37364
37485
|
* @param {boolean} event.checked Checked or not
|
|
37365
37486
|
*/
|
|
37366
37487
|
onHeaderMenuToggleItem: ((event: { source: Grid, menu: Menu, item: MenuItem, column: Column, checked: boolean }) => void)|string
|
|
37488
|
+
/**
|
|
37489
|
+
* Fires when the Grid is scrolling horizontally in one of its SubGrids.
|
|
37490
|
+
* @param {object} event Event object
|
|
37491
|
+
* @param {Grid.view.GridBase} event.source The firing Grid instance
|
|
37492
|
+
* @param {Grid.view.SubGrid} event.subGrid The scrolling SubGrid instance
|
|
37493
|
+
* @param {number} event.scrollLeft The horizontal scroll position
|
|
37494
|
+
* @param {number} event.scrollX The horizontal scroll position in the RTL-safe coordinate system
|
|
37495
|
+
*/
|
|
37496
|
+
onHorizontalScroll: ((event: { source: GridBase, subGrid: SubGrid, scrollLeft: number, scrollX: number }) => void)|string
|
|
37497
|
+
/**
|
|
37498
|
+
* Fires after the Grid is done scrolling horizontally in one of its SubGrids.
|
|
37499
|
+
* @param {object} event Event object
|
|
37500
|
+
* @param {Grid.view.GridBase} event.source The firing Grid instance
|
|
37501
|
+
* @param {Grid.view.SubGrid} event.subGrid The scrolling SubGrid instance
|
|
37502
|
+
* @param {number} [event.scrollLeft] The horizontal scroll position. Only supplied when the event follows a SubGrid resize, the scroll driven path does not report a position
|
|
37503
|
+
*/
|
|
37504
|
+
onHorizontalScrollEnd: ((event: { source: GridBase, subGrid: SubGrid, scrollLeft?: number }) => void)|string
|
|
37367
37505
|
/**
|
|
37368
37506
|
* Fires when row locking is enabled.
|
|
37369
37507
|
* @param {object} event Event object
|
|
@@ -38243,22 +38381,6 @@ type SubGridListenersTypes = {
|
|
|
38243
38381
|
* @param {Core.widget.Widget} event.source The widget
|
|
38244
38382
|
*/
|
|
38245
38383
|
hide: (event: { source: Widget }) => void
|
|
38246
|
-
/**
|
|
38247
|
-
* Fires when the Grid is scrolling horizontally in one of its SubGrids
|
|
38248
|
-
* @param {object} event Event object
|
|
38249
|
-
* @param {Grid.view.Grid} event.source The firing Grid instance.
|
|
38250
|
-
* @param {Grid.view.SubGrid} event.subGrid The scrolling SubGrid instance.
|
|
38251
|
-
* @param {number} event.scrollLeft The horizontal scroll position.
|
|
38252
|
-
*/
|
|
38253
|
-
horizontalScroll: (event: { source: Grid, subGrid: SubGrid, scrollLeft: number }) => void
|
|
38254
|
-
/**
|
|
38255
|
-
* Fires after the Grid is done scrolling horizontally in one of its SubGrids
|
|
38256
|
-
* @param {object} event Event object
|
|
38257
|
-
* @param {Grid.view.Grid} event.source The firing Grid instance.
|
|
38258
|
-
* @param {Grid.view.SubGrid} event.subGrid The scrolling SubGrid instance.
|
|
38259
|
-
* @param {number} event.scrollLeft The horizontal scroll position.
|
|
38260
|
-
*/
|
|
38261
|
-
horizontalScrollEnd: (event: { source: Grid, subGrid: SubGrid, scrollLeft: number }) => void
|
|
38262
38384
|
/**
|
|
38263
38385
|
* Triggered when a widget which had been in a non-visible state for any reason
|
|
38264
38386
|
* achieves visibility.
|
|
@@ -38373,22 +38495,6 @@ type SubGridListeners = {
|
|
|
38373
38495
|
* @param {Core.widget.Widget} event.source The widget
|
|
38374
38496
|
*/
|
|
38375
38497
|
hide?: ((event: { source: Widget }) => void)|string
|
|
38376
|
-
/**
|
|
38377
|
-
* Fires when the Grid is scrolling horizontally in one of its SubGrids
|
|
38378
|
-
* @param {object} event Event object
|
|
38379
|
-
* @param {Grid.view.Grid} event.source The firing Grid instance.
|
|
38380
|
-
* @param {Grid.view.SubGrid} event.subGrid The scrolling SubGrid instance.
|
|
38381
|
-
* @param {number} event.scrollLeft The horizontal scroll position.
|
|
38382
|
-
*/
|
|
38383
|
-
horizontalScroll?: ((event: { source: Grid, subGrid: SubGrid, scrollLeft: number }) => void)|string
|
|
38384
|
-
/**
|
|
38385
|
-
* Fires after the Grid is done scrolling horizontally in one of its SubGrids
|
|
38386
|
-
* @param {object} event Event object
|
|
38387
|
-
* @param {Grid.view.Grid} event.source The firing Grid instance.
|
|
38388
|
-
* @param {Grid.view.SubGrid} event.subGrid The scrolling SubGrid instance.
|
|
38389
|
-
* @param {number} event.scrollLeft The horizontal scroll position.
|
|
38390
|
-
*/
|
|
38391
|
-
horizontalScrollEnd?: ((event: { source: Grid, subGrid: SubGrid, scrollLeft: number }) => void)|string
|
|
38392
38498
|
/**
|
|
38393
38499
|
* Triggered when a widget which had been in a non-visible state for any reason
|
|
38394
38500
|
* achieves visibility.
|
|
@@ -38759,9 +38865,10 @@ type SubGridConfig = {
|
|
|
38759
38865
|
*/
|
|
38760
38866
|
span?: number
|
|
38761
38867
|
/**
|
|
38762
|
-
* Custom style spec to add to element
|
|
38868
|
+
* Custom style spec to add to element, either as a cssText string:
|
|
38869
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/SubGrid#config-style)
|
|
38763
38870
|
*/
|
|
38764
|
-
style?:
|
|
38871
|
+
style?: CSSStyleConfig
|
|
38765
38872
|
/**
|
|
38766
38873
|
* 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
|
|
38767
38874
|
* [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
|
|
@@ -38869,22 +38976,6 @@ type SubGridConfig = {
|
|
|
38869
38976
|
* @param {Core.widget.Widget} event.source The widget
|
|
38870
38977
|
*/
|
|
38871
38978
|
onHide?: ((event: { source: Widget }) => void)|string
|
|
38872
|
-
/**
|
|
38873
|
-
* Fires when the Grid is scrolling horizontally in one of its SubGrids
|
|
38874
|
-
* @param {object} event Event object
|
|
38875
|
-
* @param {Grid.view.Grid} event.source The firing Grid instance.
|
|
38876
|
-
* @param {Grid.view.SubGrid} event.subGrid The scrolling SubGrid instance.
|
|
38877
|
-
* @param {number} event.scrollLeft The horizontal scroll position.
|
|
38878
|
-
*/
|
|
38879
|
-
onHorizontalScroll?: ((event: { source: Grid, subGrid: SubGrid, scrollLeft: number }) => void)|string
|
|
38880
|
-
/**
|
|
38881
|
-
* Fires after the Grid is done scrolling horizontally in one of its SubGrids
|
|
38882
|
-
* @param {object} event Event object
|
|
38883
|
-
* @param {Grid.view.Grid} event.source The firing Grid instance.
|
|
38884
|
-
* @param {Grid.view.SubGrid} event.subGrid The scrolling SubGrid instance.
|
|
38885
|
-
* @param {number} event.scrollLeft The horizontal scroll position.
|
|
38886
|
-
*/
|
|
38887
|
-
onHorizontalScrollEnd?: ((event: { source: Grid, subGrid: SubGrid, scrollLeft: number }) => void)|string
|
|
38888
38979
|
/**
|
|
38889
38980
|
* Triggered when a widget which had been in a non-visible state for any reason
|
|
38890
38981
|
* achieves visibility.
|
|
@@ -38979,22 +39070,6 @@ export class SubGrid extends Widget {
|
|
|
38979
39070
|
* @param {Core.Base} event.source The Object that is being destroyed.
|
|
38980
39071
|
*/
|
|
38981
39072
|
onDestroy: ((event: { source: Base }) => void)|string
|
|
38982
|
-
/**
|
|
38983
|
-
* Fires when the Grid is scrolling horizontally in one of its SubGrids
|
|
38984
|
-
* @param {object} event Event object
|
|
38985
|
-
* @param {Grid.view.Grid} event.source The firing Grid instance.
|
|
38986
|
-
* @param {Grid.view.SubGrid} event.subGrid The scrolling SubGrid instance.
|
|
38987
|
-
* @param {number} event.scrollLeft The horizontal scroll position.
|
|
38988
|
-
*/
|
|
38989
|
-
onHorizontalScroll: ((event: { source: Grid, subGrid: SubGrid, scrollLeft: number }) => void)|string
|
|
38990
|
-
/**
|
|
38991
|
-
* Fires after the Grid is done scrolling horizontally in one of its SubGrids
|
|
38992
|
-
* @param {object} event Event object
|
|
38993
|
-
* @param {Grid.view.Grid} event.source The firing Grid instance.
|
|
38994
|
-
* @param {Grid.view.SubGrid} event.subGrid The scrolling SubGrid instance.
|
|
38995
|
-
* @param {number} event.scrollLeft The horizontal scroll position.
|
|
38996
|
-
*/
|
|
38997
|
-
onHorizontalScrollEnd: ((event: { source: Grid, subGrid: SubGrid, scrollLeft: number }) => void)|string
|
|
38998
39073
|
/**
|
|
38999
39074
|
* Creates an instance of the class using the supplied configuration
|
|
39000
39075
|
* @param {GridChartDesignerConfig} [config]
|
|
@@ -39771,6 +39846,23 @@ type TreeGridListenersTypes = {
|
|
|
39771
39846
|
* @param {Core.widget.Widget} event.source The widget
|
|
39772
39847
|
*/
|
|
39773
39848
|
hide: (event: { source: Widget }) => void
|
|
39849
|
+
/**
|
|
39850
|
+
* Fires when the Grid is scrolling horizontally in one of its SubGrids.
|
|
39851
|
+
* @param {object} event Event object
|
|
39852
|
+
* @param {Grid.view.GridBase} event.source The firing Grid instance
|
|
39853
|
+
* @param {Grid.view.SubGrid} event.subGrid The scrolling SubGrid instance
|
|
39854
|
+
* @param {number} event.scrollLeft The horizontal scroll position
|
|
39855
|
+
* @param {number} event.scrollX The horizontal scroll position in the RTL-safe coordinate system
|
|
39856
|
+
*/
|
|
39857
|
+
horizontalScroll: (event: { source: GridBase, subGrid: SubGrid, scrollLeft: number, scrollX: number }) => void
|
|
39858
|
+
/**
|
|
39859
|
+
* Fires after the Grid is done scrolling horizontally in one of its SubGrids.
|
|
39860
|
+
* @param {object} event Event object
|
|
39861
|
+
* @param {Grid.view.GridBase} event.source The firing Grid instance
|
|
39862
|
+
* @param {Grid.view.SubGrid} event.subGrid The scrolling SubGrid instance
|
|
39863
|
+
* @param {number} [event.scrollLeft] The horizontal scroll position. Only supplied when the event follows a SubGrid resize, the scroll driven path does not report a position
|
|
39864
|
+
*/
|
|
39865
|
+
horizontalScrollEnd: (event: { source: GridBase, subGrid: SubGrid, scrollLeft?: number }) => void
|
|
39774
39866
|
/**
|
|
39775
39867
|
* Fires when row locking is enabled.
|
|
39776
39868
|
* @param {object} event Event object
|
|
@@ -40786,6 +40878,23 @@ type TreeGridListeners = {
|
|
|
40786
40878
|
* @param {Core.widget.Widget} event.source The widget
|
|
40787
40879
|
*/
|
|
40788
40880
|
hide?: ((event: { source: Widget }) => void)|string
|
|
40881
|
+
/**
|
|
40882
|
+
* Fires when the Grid is scrolling horizontally in one of its SubGrids.
|
|
40883
|
+
* @param {object} event Event object
|
|
40884
|
+
* @param {Grid.view.GridBase} event.source The firing Grid instance
|
|
40885
|
+
* @param {Grid.view.SubGrid} event.subGrid The scrolling SubGrid instance
|
|
40886
|
+
* @param {number} event.scrollLeft The horizontal scroll position
|
|
40887
|
+
* @param {number} event.scrollX The horizontal scroll position in the RTL-safe coordinate system
|
|
40888
|
+
*/
|
|
40889
|
+
horizontalScroll?: ((event: { source: GridBase, subGrid: SubGrid, scrollLeft: number, scrollX: number }) => void)|string
|
|
40890
|
+
/**
|
|
40891
|
+
* Fires after the Grid is done scrolling horizontally in one of its SubGrids.
|
|
40892
|
+
* @param {object} event Event object
|
|
40893
|
+
* @param {Grid.view.GridBase} event.source The firing Grid instance
|
|
40894
|
+
* @param {Grid.view.SubGrid} event.subGrid The scrolling SubGrid instance
|
|
40895
|
+
* @param {number} [event.scrollLeft] The horizontal scroll position. Only supplied when the event follows a SubGrid resize, the scroll driven path does not report a position
|
|
40896
|
+
*/
|
|
40897
|
+
horizontalScrollEnd?: ((event: { source: GridBase, subGrid: SubGrid, scrollLeft?: number }) => void)|string
|
|
40789
40898
|
/**
|
|
40790
40899
|
* Fires when row locking is enabled.
|
|
40791
40900
|
* @param {object} event Event object
|
|
@@ -41791,9 +41900,10 @@ type TreeGridConfig = {
|
|
|
41791
41900
|
*/
|
|
41792
41901
|
strips?: Record<string, GridContainerItemConfig>
|
|
41793
41902
|
/**
|
|
41794
|
-
* Custom style spec to add to element
|
|
41903
|
+
* Custom style spec to add to element, either as a cssText string:
|
|
41904
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/TreeGrid#config-style)
|
|
41795
41905
|
*/
|
|
41796
|
-
style?:
|
|
41906
|
+
style?: CSSStyleConfig
|
|
41797
41907
|
/**
|
|
41798
41908
|
* An object containing sub grid configuration objects keyed by a `region` property.
|
|
41799
41909
|
* By default, grid has a 'locked' region (if configured with locked columns) and a 'normal' region.
|
|
@@ -42608,6 +42718,23 @@ type TreeGridConfig = {
|
|
|
42608
42718
|
* @param {Core.widget.Widget} event.source The widget
|
|
42609
42719
|
*/
|
|
42610
42720
|
onHide?: ((event: { source: Widget }) => void)|string
|
|
42721
|
+
/**
|
|
42722
|
+
* Fires when the Grid is scrolling horizontally in one of its SubGrids.
|
|
42723
|
+
* @param {object} event Event object
|
|
42724
|
+
* @param {Grid.view.GridBase} event.source The firing Grid instance
|
|
42725
|
+
* @param {Grid.view.SubGrid} event.subGrid The scrolling SubGrid instance
|
|
42726
|
+
* @param {number} event.scrollLeft The horizontal scroll position
|
|
42727
|
+
* @param {number} event.scrollX The horizontal scroll position in the RTL-safe coordinate system
|
|
42728
|
+
*/
|
|
42729
|
+
onHorizontalScroll?: ((event: { source: GridBase, subGrid: SubGrid, scrollLeft: number, scrollX: number }) => void)|string
|
|
42730
|
+
/**
|
|
42731
|
+
* Fires after the Grid is done scrolling horizontally in one of its SubGrids.
|
|
42732
|
+
* @param {object} event Event object
|
|
42733
|
+
* @param {Grid.view.GridBase} event.source The firing Grid instance
|
|
42734
|
+
* @param {Grid.view.SubGrid} event.subGrid The scrolling SubGrid instance
|
|
42735
|
+
* @param {number} [event.scrollLeft] The horizontal scroll position. Only supplied when the event follows a SubGrid resize, the scroll driven path does not report a position
|
|
42736
|
+
*/
|
|
42737
|
+
onHorizontalScrollEnd?: ((event: { source: GridBase, subGrid: SubGrid, scrollLeft?: number }) => void)|string
|
|
42611
42738
|
/**
|
|
42612
42739
|
* Fires when row locking is enabled.
|
|
42613
42740
|
* @param {object} event Event object
|
|
@@ -43540,7 +43667,7 @@ type ExportDialogConfig = {
|
|
|
43540
43667
|
*/
|
|
43541
43668
|
autoShow?: boolean
|
|
43542
43669
|
/**
|
|
43543
|
-
* Update assigned [record](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-record) automatically on field changes
|
|
43670
|
+
* Update assigned [record](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-record) automatically on field changes.
|
|
43544
43671
|
*/
|
|
43545
43672
|
autoUpdateRecord?: boolean
|
|
43546
43673
|
/**
|
|
@@ -44122,9 +44249,10 @@ type ExportDialogConfig = {
|
|
|
44122
44249
|
*/
|
|
44123
44250
|
strips?: Record<string, GridContainerItemConfig>
|
|
44124
44251
|
/**
|
|
44125
|
-
* Custom style spec to add to element
|
|
44252
|
+
* Custom style spec to add to element, either as a cssText string:
|
|
44253
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/export/ExportDialog#config-style)
|
|
44126
44254
|
*/
|
|
44127
|
-
style?:
|
|
44255
|
+
style?: CSSStyleConfig
|
|
44128
44256
|
/**
|
|
44129
44257
|
* 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
|
|
44130
44258
|
* [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
|
|
@@ -46046,9 +46174,10 @@ type AIFilterFieldConfig = {
|
|
|
46046
46174
|
*/
|
|
46047
46175
|
spellCheck?: boolean
|
|
46048
46176
|
/**
|
|
46049
|
-
* Custom style spec to add to element
|
|
46177
|
+
* Custom style spec to add to element, either as a cssText string:
|
|
46178
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-style)
|
|
46050
46179
|
*/
|
|
46051
|
-
style?:
|
|
46180
|
+
style?: CSSStyleConfig
|
|
46052
46181
|
/**
|
|
46053
46182
|
* 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
|
|
46054
46183
|
* [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
|
|
@@ -47112,7 +47241,7 @@ type ChecklistFilterComboConfig = {
|
|
|
47112
47241
|
/**
|
|
47113
47242
|
* Template to render optional content next to list items.
|
|
47114
47243
|
* @param {Core.data.Model} record The list item's backing record
|
|
47115
|
-
* @returns {string}
|
|
47244
|
+
* @returns {string} *When returning HTML, ensure any user data from the record is encoded using [StringHelper.encodeHtml()](https://bryntum.com/products/grid/docs/api/Core/helper/StringHelper#function-encodeHtml-static) to prevent XSS vulnerabilities.*
|
|
47116
47245
|
*/
|
|
47117
47246
|
listItemPillTpl?: (record: Model) => string
|
|
47118
47247
|
/**
|
|
@@ -47377,9 +47506,10 @@ type ChecklistFilterComboConfig = {
|
|
|
47377
47506
|
*/
|
|
47378
47507
|
store?: Store|StoreConfig
|
|
47379
47508
|
/**
|
|
47380
|
-
* Custom style spec to add to element
|
|
47509
|
+
* Custom style spec to add to element, either as a cssText string:
|
|
47510
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-style)
|
|
47381
47511
|
*/
|
|
47382
|
-
style?:
|
|
47512
|
+
style?: CSSStyleConfig
|
|
47383
47513
|
/**
|
|
47384
47514
|
* 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
|
|
47385
47515
|
* [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
|
|
@@ -48294,9 +48424,10 @@ type GridChartDesignerConfig = {
|
|
|
48294
48424
|
*/
|
|
48295
48425
|
span?: number
|
|
48296
48426
|
/**
|
|
48297
|
-
* Custom style spec to add to element
|
|
48427
|
+
* Custom style spec to add to element, either as a cssText string:
|
|
48428
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-style)
|
|
48298
48429
|
*/
|
|
48299
|
-
style?:
|
|
48430
|
+
style?: CSSStyleConfig
|
|
48300
48431
|
/**
|
|
48301
48432
|
* Whether to update the chart designer's data series options and preview data as the
|
|
48302
48433
|
* grid selection changes.
|
|
@@ -48827,7 +48958,7 @@ type GridFieldFilterPickerConfig = {
|
|
|
48827
48958
|
*/
|
|
48828
48959
|
ariaLabel?: string
|
|
48829
48960
|
/**
|
|
48830
|
-
* Update assigned [record](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-record) automatically on field changes
|
|
48961
|
+
* Update assigned [record](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-record) automatically on field changes.
|
|
48831
48962
|
*/
|
|
48832
48963
|
autoUpdateRecord?: boolean
|
|
48833
48964
|
/**
|
|
@@ -49302,9 +49433,10 @@ type GridFieldFilterPickerConfig = {
|
|
|
49302
49433
|
*/
|
|
49303
49434
|
strictRecordMapping?: boolean
|
|
49304
49435
|
/**
|
|
49305
|
-
* Custom style spec to add to element
|
|
49436
|
+
* Custom style spec to add to element, either as a cssText string:
|
|
49437
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPicker#config-style)
|
|
49306
49438
|
*/
|
|
49307
|
-
style?:
|
|
49439
|
+
style?: CSSStyleConfig
|
|
49308
49440
|
/**
|
|
49309
49441
|
* 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
|
|
49310
49442
|
* [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
|
|
@@ -49899,7 +50031,7 @@ type GridFieldFilterPickerGroupConfig = {
|
|
|
49899
50031
|
*/
|
|
49900
50032
|
ariaLabel?: string
|
|
49901
50033
|
/**
|
|
49902
|
-
* Update assigned [record](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-record) automatically on field changes
|
|
50034
|
+
* Update assigned [record](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-record) automatically on field changes.
|
|
49903
50035
|
*/
|
|
49904
50036
|
autoUpdateRecord?: boolean
|
|
49905
50037
|
/**
|
|
@@ -50385,9 +50517,10 @@ type GridFieldFilterPickerGroupConfig = {
|
|
|
50385
50517
|
*/
|
|
50386
50518
|
strictRecordMapping?: boolean
|
|
50387
50519
|
/**
|
|
50388
|
-
* Custom style spec to add to element
|
|
50520
|
+
* Custom style spec to add to element, either as a cssText string:
|
|
50521
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-style)
|
|
50389
50522
|
*/
|
|
50390
|
-
style?:
|
|
50523
|
+
style?: CSSStyleConfig
|
|
50391
50524
|
/**
|
|
50392
50525
|
* 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
|
|
50393
50526
|
* [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
|
|
@@ -51442,9 +51575,10 @@ type GroupBarConfig = {
|
|
|
51442
51575
|
*/
|
|
51443
51576
|
store?: object|object[]|StoreConfig|Store
|
|
51444
51577
|
/**
|
|
51445
|
-
* Custom style spec to add to element
|
|
51578
|
+
* Custom style spec to add to element, either as a cssText string:
|
|
51579
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-style)
|
|
51446
51580
|
*/
|
|
51447
|
-
style?:
|
|
51581
|
+
style?: CSSStyleConfig
|
|
51448
51582
|
/**
|
|
51449
51583
|
* 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
|
|
51450
51584
|
* [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
|
|
@@ -52752,9 +52886,10 @@ type TreeComboConfig = {
|
|
|
52752
52886
|
*/
|
|
52753
52887
|
store?: Store|StoreConfig
|
|
52754
52888
|
/**
|
|
52755
|
-
* Custom style spec to add to element
|
|
52889
|
+
* Custom style spec to add to element, either as a cssText string:
|
|
52890
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/TreeCombo#config-style)
|
|
52756
52891
|
*/
|
|
52757
|
-
style?:
|
|
52892
|
+
style?: CSSStyleConfig
|
|
52758
52893
|
/**
|
|
52759
52894
|
* 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
|
|
52760
52895
|
* [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
|