@bryntum/grid-react-thin 7.2.4 → 7.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -5
- package/lib/BryntumAIFilterField.d.ts +9 -16
- package/lib/BryntumAIFilterField.js +2 -2
- package/lib/BryntumAIFilterField.js.map +1 -1
- package/lib/BryntumChecklistFilterCombo.d.ts +12 -19
- package/lib/BryntumChecklistFilterCombo.js +2 -2
- package/lib/BryntumChecklistFilterCombo.js.map +1 -1
- package/lib/BryntumGrid.d.ts +47 -58
- package/lib/BryntumGrid.js +2 -2
- package/lib/BryntumGrid.js.map +1 -1
- package/lib/BryntumGridBase.d.ts +47 -58
- package/lib/BryntumGridBase.js +2 -2
- package/lib/BryntumGridBase.js.map +1 -1
- package/lib/BryntumGridChartDesigner.d.ts +7 -15
- package/lib/BryntumGridChartDesigner.js +1 -2
- package/lib/BryntumGridChartDesigner.js.map +1 -1
- package/lib/BryntumGridFieldFilterPicker.d.ts +8 -15
- package/lib/BryntumGridFieldFilterPicker.js +2 -5
- package/lib/BryntumGridFieldFilterPicker.js.map +1 -1
- package/lib/BryntumGridFieldFilterPickerGroup.d.ts +9 -16
- package/lib/BryntumGridFieldFilterPickerGroup.js +2 -5
- package/lib/BryntumGridFieldFilterPickerGroup.js.map +1 -1
- package/lib/BryntumGroupBar.d.ts +8 -16
- package/lib/BryntumGroupBar.js +1 -2
- package/lib/BryntumGroupBar.js.map +1 -1
- package/lib/BryntumTreeCombo.d.ts +12 -19
- package/lib/BryntumTreeCombo.js +2 -2
- package/lib/BryntumTreeCombo.js.map +1 -1
- package/lib/BryntumTreeGrid.d.ts +47 -58
- package/lib/BryntumTreeGrid.js +2 -2
- package/lib/BryntumTreeGrid.js.map +1 -1
- package/lib/WrapperHelper.js +2 -2
- package/lib/WrapperHelper.js.map +1 -1
- package/package.json +1 -1
- package/src/BryntumAIFilterField.tsx +85 -120
- package/src/BryntumChecklistFilterCombo.tsx +102 -151
- package/src/BryntumGrid.tsx +229 -316
- package/src/BryntumGridBase.tsx +229 -316
- package/src/BryntumGridChartDesigner.tsx +60 -96
- package/src/BryntumGridFieldFilterPicker.tsx +83 -133
- package/src/BryntumGridFieldFilterPickerGroup.tsx +83 -132
- package/src/BryntumGroupBar.tsx +67 -107
- package/src/BryntumTreeCombo.tsx +103 -153
- package/src/BryntumTreeGrid.tsx +229 -316
- package/src/WrapperHelper.tsx +2 -2
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
*/
|
|
4
4
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
5
5
|
import React, { RefObject } from 'react';
|
|
6
|
-
import { AlignSpec, Base, ChipViewConfig, CollectionCompareOperator, CollectionFilterConfig, Color, Combo,
|
|
6
|
+
import { AlignSpec, Base, ChipViewConfig, CollectionCompareOperator, CollectionFilterConfig, Color, Combo, DomConfig, Duration, DurationConfig, Field, FieldContainerConfig, FieldTriggerConfig, KeyMapConfig, List, ListConfig, MaskConfig, Model, ReactJSX, Rectangle, Scroller, Store, StoreConfig, TabConfig, TooltipConfig, VueConfig, Widget } from '@bryntum/core-thin';
|
|
7
7
|
import { ChecklistFilterCombo, ChecklistFilterComboListeners, GridContainerItemConfig } from '@bryntum/grid-thin';
|
|
8
8
|
|
|
9
9
|
import { createWidget, shouldComponentUpdate, processWidgetContent } from './WrapperHelper.js';
|
|
@@ -13,14 +13,12 @@ export type BryntumChecklistFilterComboProps = {
|
|
|
13
13
|
/**
|
|
14
14
|
* Element (or element id) to adopt as this Widget's encapsulating element. The widget's
|
|
15
15
|
* content will be placed inside this element.
|
|
16
|
-
* ...
|
|
17
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-adopt)
|
|
16
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-adopt)
|
|
18
17
|
*/
|
|
19
18
|
adopt? : HTMLElement|string
|
|
20
19
|
/**
|
|
21
20
|
* *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
|
|
22
|
-
* ...
|
|
23
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-align)
|
|
21
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-align)
|
|
24
22
|
*/
|
|
25
23
|
align? : AlignSpec|string
|
|
26
24
|
/**
|
|
@@ -42,15 +40,13 @@ export type BryntumChecklistFilterComboProps = {
|
|
|
42
40
|
/**
|
|
43
41
|
* A localizable string (May contain `'L{}'` tokens which resolve in the locale file) to inject
|
|
44
42
|
* into an element which will be linked using the `aria-describedby` attribute.
|
|
45
|
-
* ...
|
|
46
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-ariaDescription)
|
|
43
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-ariaDescription)
|
|
47
44
|
*/
|
|
48
45
|
ariaDescription? : string
|
|
49
46
|
/**
|
|
50
47
|
* A localizable string (May contain `'L{}'` tokens which resolve in the locale file) to inject as
|
|
51
48
|
* the `aria-label` attribute.
|
|
52
|
-
* ...
|
|
53
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-ariaLabel)
|
|
49
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-ariaLabel)
|
|
54
50
|
*/
|
|
55
51
|
ariaLabel? : string
|
|
56
52
|
/**
|
|
@@ -73,20 +69,17 @@ export type BryntumChecklistFilterComboProps = {
|
|
|
73
69
|
/**
|
|
74
70
|
* An object where property names with a truthy value indicate which events should bubble up the ownership
|
|
75
71
|
* hierarchy when triggered.
|
|
76
|
-
* ...
|
|
77
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-bubbleEvents)
|
|
72
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-bubbleEvents)
|
|
78
73
|
*/
|
|
79
74
|
bubbleEvents? : object
|
|
80
75
|
/**
|
|
81
76
|
* Enable caching of the last retrieved result until the timeout is reached.
|
|
82
|
-
* ...
|
|
83
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-cacheLastResult)
|
|
77
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-cacheLastResult)
|
|
84
78
|
*/
|
|
85
79
|
cacheLastResult? : number|string|Duration|DurationConfig
|
|
86
80
|
/**
|
|
87
81
|
* Set to `false` to not call onXXX method names (e.g. `onShow`, `onClick`), as an easy way to listen for events.
|
|
88
|
-
* ...
|
|
89
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-callOnFunctions)
|
|
82
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-callOnFunctions)
|
|
90
83
|
*/
|
|
91
84
|
callOnFunctions? : boolean
|
|
92
85
|
/**
|
|
@@ -96,8 +89,7 @@ export type BryntumChecklistFilterComboProps = {
|
|
|
96
89
|
/**
|
|
97
90
|
* By default, if an event handler throws an exception, the error propagates up the stack and the
|
|
98
91
|
* application state is undefined. Code which follows the event handler will *not* be executed.
|
|
99
|
-
* ...
|
|
100
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-catchEventHandlerExceptions)
|
|
92
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-catchEventHandlerExceptions)
|
|
101
93
|
*/
|
|
102
94
|
catchEventHandlerExceptions? : boolean
|
|
103
95
|
/**
|
|
@@ -105,11 +97,19 @@ export type BryntumChecklistFilterComboProps = {
|
|
|
105
97
|
* Set to `true` to centre the Widget in browser viewport space.
|
|
106
98
|
*/
|
|
107
99
|
centered? : boolean
|
|
100
|
+
/**
|
|
101
|
+
* A function (or the name of a function in the ownership hierarchy) called during field validation
|
|
102
|
+
* to perform custom validity checks. The function is called as part of the [isValid](https://bryntum.com/products/grid/docs/api/Core/widget/Field#property-isValid)
|
|
103
|
+
* evaluation, after the built-in [required](https://bryntum.com/products/grid/docs/api/Core/widget/Field#config-required) check.
|
|
104
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-checkValidity)
|
|
105
|
+
* @param {Core.widget.Field} field The field being validated
|
|
106
|
+
* @returns {void}
|
|
107
|
+
*/
|
|
108
|
+
checkValidity? : ((field: Field) => void)|string
|
|
108
109
|
/**
|
|
109
110
|
* A config object to configure the [ChipView](https://bryntum.com/products/grid/docs/api/Core/widget/ChipView) to display the
|
|
110
111
|
* selected value set when [multiSelect](https://bryntum.com/products/grid/docs/api/Core/widget/Combo#config-multiSelect) is `true`.
|
|
111
|
-
* ...
|
|
112
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-chipView)
|
|
112
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-chipView)
|
|
113
113
|
*/
|
|
114
114
|
chipView? : ChipViewConfig
|
|
115
115
|
/**
|
|
@@ -134,15 +134,13 @@ export type BryntumChecklistFilterComboProps = {
|
|
|
134
134
|
* Custom CSS classes to add to element.
|
|
135
135
|
* May be specified as a space separated string, or as an object in which property names
|
|
136
136
|
* with truthy values are used as the class names:
|
|
137
|
-
* ...
|
|
138
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-cls)
|
|
137
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-cls)
|
|
139
138
|
*/
|
|
140
139
|
cls? : string|object
|
|
141
140
|
/**
|
|
142
141
|
* Applies the specified color to the widget, by setting the `--b-primary` CSS variable in the widgets
|
|
143
142
|
* `style` block.
|
|
144
|
-
* ...
|
|
145
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-color)
|
|
143
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-color)
|
|
146
144
|
*/
|
|
147
145
|
color? : Color
|
|
148
146
|
/**
|
|
@@ -159,15 +157,13 @@ export type BryntumChecklistFilterComboProps = {
|
|
|
159
157
|
* The configuration for additional items associated to this field. This is typically used to add contextual
|
|
160
158
|
* fields related to a [checkbox](https://bryntum.com/products/grid/docs/api/Core/widget/Checkbox) or [radio button](#Core/widget/Radio). See
|
|
161
159
|
* these classes for examples of nested fields.
|
|
162
|
-
* ...
|
|
163
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-container)
|
|
160
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-container)
|
|
164
161
|
*/
|
|
165
|
-
container? : Record<string, GridContainerItemConfig>|GridContainerItemConfig[]|FieldContainerConfig
|
|
162
|
+
container? : Record<string, GridContainerItemConfig>|GridContainerItemConfig[]|FieldContainerConfig
|
|
166
163
|
/**
|
|
167
164
|
* The config controls how the value of nested items are handled when a parent container gets or sets its
|
|
168
165
|
* [values](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-values).
|
|
169
|
-
* ...
|
|
170
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-containValues)
|
|
166
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-containValues)
|
|
171
167
|
* @param {Core.widget.Field} field Field instance
|
|
172
168
|
* @returns {boolean}
|
|
173
169
|
*/
|
|
@@ -176,16 +172,14 @@ export type BryntumChecklistFilterComboProps = {
|
|
|
176
172
|
* Custom CSS classes to add to the [contentElement](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-contentElement).
|
|
177
173
|
* May be specified as a space separated string, or as an object in which property names
|
|
178
174
|
* with truthy values are used as the class names:
|
|
179
|
-
* ...
|
|
180
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-contentElementCls)
|
|
175
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-contentElementCls)
|
|
181
176
|
*/
|
|
182
177
|
contentElementCls? : string|object
|
|
183
178
|
/**
|
|
184
179
|
* If configured as `true`, this means that when an unmatched string is typed into the
|
|
185
180
|
* combo's input field, and <kbd>Enter</kbd>, or the [multiValueSeparator](https://bryntum.com/products/grid/docs/api/Core/widget/Combo#config-multiValueSeparator) is typed,
|
|
186
181
|
* a new record will be created using the typed string as the [displayField](https://bryntum.com/products/grid/docs/api/Core/widget/Combo#config-displayField).
|
|
187
|
-
* ...
|
|
188
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-createOnUnmatched)
|
|
182
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-createOnUnmatched)
|
|
189
183
|
* @param {string} name Record name
|
|
190
184
|
* @param {Core.widget.Combo} combo Combo instance
|
|
191
185
|
* @returns {Core.data.Model} New record
|
|
@@ -206,16 +200,15 @@ export type BryntumChecklistFilterComboProps = {
|
|
|
206
200
|
*/
|
|
207
201
|
defaultBindProperty? : string
|
|
208
202
|
/**
|
|
209
|
-
* Check for CSS compatibility issues
|
|
210
|
-
*
|
|
211
|
-
* [
|
|
203
|
+
* Check for CSS compatibility and inclusion related issues and try to auto fix them. Performs the following
|
|
204
|
+
* checks:
|
|
205
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-detectCSSCompatibilityIssues)
|
|
212
206
|
*/
|
|
213
207
|
detectCSSCompatibilityIssues? : boolean
|
|
214
208
|
/**
|
|
215
209
|
* Disable or enable the widget. It is similar to [readOnly](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-readOnly) except a disabled widget
|
|
216
210
|
* cannot be focused, uses a different rendition (usually greyish) and does not allow selecting its value.
|
|
217
|
-
* ...
|
|
218
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-disabled)
|
|
211
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-disabled)
|
|
219
212
|
*/
|
|
220
213
|
disabled? : boolean|'inert'
|
|
221
214
|
/**
|
|
@@ -228,26 +221,23 @@ export type BryntumChecklistFilterComboProps = {
|
|
|
228
221
|
* @param {Core.widget.Combo} combo A reference to this Combo
|
|
229
222
|
* @returns {string,void}
|
|
230
223
|
*/
|
|
231
|
-
displayValueRenderer? : (record: Model
|
|
224
|
+
displayValueRenderer? : (record: Model, combo: Combo) => string|void
|
|
232
225
|
/**
|
|
233
226
|
* Controls the placement of this widget when it is added to a [panel's ](https://bryntum.com/products/grid/docs/api/Core/widget/Panel)
|
|
234
227
|
* [strips collection](https://bryntum.com/products/grid/docs/api/Core/widget/Panel#config-strips). Typical values for this config are `'top'`,
|
|
235
228
|
* `'bottom'`, `'left'`, or `'right'`, which cause the widget to be placed on that side of the panel's
|
|
236
229
|
* body. Such widgets are called "edge strips".
|
|
237
|
-
* ...
|
|
238
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-dock)
|
|
230
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-dock)
|
|
239
231
|
*/
|
|
240
232
|
dock? : 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
|
|
241
233
|
/**
|
|
242
234
|
* *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
|
|
243
235
|
* Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´
|
|
244
236
|
* property which controls when a drag should start.
|
|
245
|
-
* ...
|
|
246
|
-
*
|
|
237
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-draggable)
|
|
238
|
+
* @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
|
|
247
239
|
*/
|
|
248
|
-
draggable? : boolean|
|
|
249
|
-
handleSelector?: string
|
|
250
|
-
}
|
|
240
|
+
draggable? : boolean|object
|
|
251
241
|
/**
|
|
252
242
|
* User can edit text in text field (otherwise only pick from attached picker)
|
|
253
243
|
*/
|
|
@@ -255,21 +245,18 @@ export type BryntumChecklistFilterComboProps = {
|
|
|
255
245
|
/**
|
|
256
246
|
* An object specifying attributes to assign to the root element of this widget.
|
|
257
247
|
* Set `null` value to attribute to remove it.
|
|
258
|
-
* ...
|
|
259
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-elementAttributes)
|
|
248
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-elementAttributes)
|
|
260
249
|
*/
|
|
261
250
|
elementAttributes? : Record<string, string|null>
|
|
262
251
|
/**
|
|
263
252
|
* Text to display in the drop down when there are no items in the underlying store.
|
|
264
|
-
* ...
|
|
265
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-emptyText)
|
|
253
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-emptyText)
|
|
266
254
|
*/
|
|
267
255
|
emptyText? : string
|
|
268
256
|
/**
|
|
269
257
|
* A function which creates an array of values for the [filterParamName](https://bryntum.com/products/grid/docs/api/Core/widget/Combo#config-filterParamName) to pass
|
|
270
258
|
* any filters to the server upon load.
|
|
271
|
-
* ...
|
|
272
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-encodeFilterParams)
|
|
259
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-encodeFilterParams)
|
|
273
260
|
* @param {object[]} filters filters
|
|
274
261
|
* @returns {object[]} array of values
|
|
275
262
|
*/
|
|
@@ -283,8 +270,7 @@ export type BryntumChecklistFilterComboProps = {
|
|
|
283
270
|
/**
|
|
284
271
|
* The name of an operator type as implemented in [operator](https://bryntum.com/products/grid/docs/api/Core/util/CollectionFilter#config-operator)
|
|
285
272
|
* to use when filtering the dropdown list based upon the typed value.
|
|
286
|
-
* ...
|
|
287
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-filterOperator)
|
|
273
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-filterOperator)
|
|
288
274
|
*/
|
|
289
275
|
filterOperator? : CollectionCompareOperator
|
|
290
276
|
/**
|
|
@@ -325,8 +311,7 @@ export type BryntumChecklistFilterComboProps = {
|
|
|
325
311
|
hidden? : boolean
|
|
326
312
|
/**
|
|
327
313
|
* *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
|
|
328
|
-
* ...
|
|
329
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-hideAnimation)
|
|
314
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-hideAnimation)
|
|
330
315
|
*/
|
|
331
316
|
hideAnimation? : boolean|object
|
|
332
317
|
/**
|
|
@@ -347,8 +332,7 @@ export type BryntumChecklistFilterComboProps = {
|
|
|
347
332
|
/**
|
|
348
333
|
* An optional string to display inside the input field as an overlay. This can be useful for displaying
|
|
349
334
|
* a field's units.
|
|
350
|
-
* ...
|
|
351
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-hint)
|
|
335
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-hint)
|
|
352
336
|
* @param {object} data A data object
|
|
353
337
|
* @param {Core.widget.Field} data.source A reference to the field instance
|
|
354
338
|
* @param {any} data.value The current value of the field
|
|
@@ -359,8 +343,7 @@ export type BryntumChecklistFilterComboProps = {
|
|
|
359
343
|
* This config is similar to [hint](https://bryntum.com/products/grid/docs/api/Core/widget/Field#config-hint) except that this config is used to display HTML content.
|
|
360
344
|
* Since this can allow malicious content to be executed, be sure not to include user-entered data or to
|
|
361
345
|
* encode such data (see [encodeHtml](https://bryntum.com/products/grid/docs/api/Core/helper/StringHelper#function-encodeHtml-static)).
|
|
362
|
-
* ...
|
|
363
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-hintHtml)
|
|
346
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-hintHtml)
|
|
364
347
|
* @param {object} data A data object
|
|
365
348
|
* @param {Core.widget.Field} data.source A reference to the field instance
|
|
366
349
|
* @param {any} data.value The current value of the field
|
|
@@ -373,23 +356,20 @@ export type BryntumChecklistFilterComboProps = {
|
|
|
373
356
|
id? : string
|
|
374
357
|
/**
|
|
375
358
|
* Determines if the widgets read-only state should be controlled by its parent.
|
|
376
|
-
* ...
|
|
377
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-ignoreParentReadOnly)
|
|
359
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-ignoreParentReadOnly)
|
|
378
360
|
*/
|
|
379
361
|
ignoreParentReadOnly? : boolean
|
|
380
362
|
/**
|
|
381
363
|
* Set this config to `true` to always display items horizontally along with this field. This assigns an
|
|
382
364
|
* [hbox](https://bryntum.com/products/grid/docs/api/Core/widget/layout/Box) as the [layout](#Core/widget/Container#config-layout) to the
|
|
383
365
|
* [container](https://bryntum.com/products/grid/docs/api/Core/widget/Field#config-container).
|
|
384
|
-
* ...
|
|
385
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-inline)
|
|
366
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-inline)
|
|
386
367
|
*/
|
|
387
368
|
inline? : boolean
|
|
388
369
|
/**
|
|
389
370
|
* Configure this as `true` to render the dropdown list as a permanently visible list
|
|
390
371
|
* in the document flow immediately below the input area instead of as a popup.
|
|
391
|
-
* ...
|
|
392
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-inlinePicker)
|
|
372
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-inlinePicker)
|
|
393
373
|
*/
|
|
394
374
|
inlinePicker? : boolean
|
|
395
375
|
/**
|
|
@@ -427,30 +407,26 @@ export type BryntumChecklistFilterComboProps = {
|
|
|
427
407
|
insertFirst? : HTMLElement|string
|
|
428
408
|
/**
|
|
429
409
|
* Rows to display in the dropdown (list items).
|
|
430
|
-
* ...
|
|
431
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-items)
|
|
410
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-items)
|
|
432
411
|
*/
|
|
433
412
|
items? : object[]|string[]|object
|
|
434
413
|
/**
|
|
435
414
|
* An object whose keys are the [key](https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent/key) name
|
|
436
415
|
* and optional modifier prefixes: `'Ctrl+'`, `'Alt+'`, `'Meta+'`, and `'Shift+'` (case-insensitive). The values
|
|
437
416
|
* are the name of the instance method to call when the keystroke is received.
|
|
438
|
-
* ...
|
|
439
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-keyMap)
|
|
417
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-keyMap)
|
|
440
418
|
*/
|
|
441
419
|
keyMap? : Record<string, KeyMapConfig>
|
|
442
420
|
/**
|
|
443
421
|
* The delay in milliseconds to wait after the last keystroke before triggering a change event.
|
|
444
422
|
* Set to 0 to not trigger change events from keystrokes (listen for input event instead to have
|
|
445
423
|
* immediate feedback, change will still be triggered on blur).
|
|
446
|
-
* ...
|
|
447
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-keyStrokeChangeDelay)
|
|
424
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-keyStrokeChangeDelay)
|
|
448
425
|
*/
|
|
449
426
|
keyStrokeChangeDelay? : number
|
|
450
427
|
/**
|
|
451
428
|
* The delay in milliseconds to wait after the last keystroke before filtering the list.
|
|
452
|
-
* ...
|
|
453
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-keyStrokeFilterDelay)
|
|
429
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-keyStrokeFilterDelay)
|
|
454
430
|
*/
|
|
455
431
|
keyStrokeFilterDelay? : number
|
|
456
432
|
/**
|
|
@@ -463,15 +439,15 @@ export type BryntumChecklistFilterComboProps = {
|
|
|
463
439
|
labelCls? : string|object
|
|
464
440
|
/**
|
|
465
441
|
* Label position, either 'before' the field or 'above' the field
|
|
466
|
-
* ...
|
|
467
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-labelPosition)
|
|
442
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-labelPosition)
|
|
468
443
|
*/
|
|
469
444
|
labelPosition? : 'before'|'above'|null
|
|
470
445
|
/**
|
|
471
446
|
* The labels to add either before or after the input field.
|
|
472
447
|
* Each label may have the following properties:
|
|
473
|
-
* ...
|
|
474
|
-
*
|
|
448
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-labels)
|
|
449
|
+
* @property {string} html Label text
|
|
450
|
+
* @property {'start','end'} align Which end of the file the label should go
|
|
475
451
|
*/
|
|
476
452
|
labels? : object[]
|
|
477
453
|
/**
|
|
@@ -484,8 +460,7 @@ export type BryntumChecklistFilterComboProps = {
|
|
|
484
460
|
listCls? : string
|
|
485
461
|
/**
|
|
486
462
|
* The listener set for this object.
|
|
487
|
-
* ...
|
|
488
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-listeners)
|
|
463
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-listeners)
|
|
489
464
|
*/
|
|
490
465
|
listeners? : ChecklistFilterComboListeners
|
|
491
466
|
/**
|
|
@@ -496,18 +471,16 @@ export type BryntumChecklistFilterComboProps = {
|
|
|
496
471
|
listItemPillTpl? : (record: Model) => string
|
|
497
472
|
/**
|
|
498
473
|
* Template string used to render the list items in the dropdown list
|
|
499
|
-
* ...
|
|
500
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-listItemTpl)
|
|
474
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-listItemTpl)
|
|
501
475
|
* @param {Core.data.Model} record The record representing the item being rendered
|
|
502
476
|
* @returns {string,void}
|
|
503
477
|
*/
|
|
504
|
-
listItemTpl? : (record: Model
|
|
478
|
+
listItemTpl? : (record: Model) => string|void
|
|
505
479
|
/**
|
|
506
480
|
* A class translations of which are used for translating this entity.
|
|
507
481
|
* This is often used when translations of an item are defined on its container class.
|
|
508
482
|
* For example:
|
|
509
|
-
* ...
|
|
510
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-localeClass)
|
|
483
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-localeClass)
|
|
511
484
|
*/
|
|
512
485
|
localeClass? : typeof Base
|
|
513
486
|
/**
|
|
@@ -519,8 +492,7 @@ export type BryntumChecklistFilterComboProps = {
|
|
|
519
492
|
* In case there is a need to localize not typical value (not a String value or a field with re-defined setter/getter),
|
|
520
493
|
* you could use 'localeKey' meta configuration.
|
|
521
494
|
* Example:
|
|
522
|
-
* ...
|
|
523
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-localizableProperties)
|
|
495
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-localizableProperties)
|
|
524
496
|
*/
|
|
525
497
|
localizableProperties? : string[]
|
|
526
498
|
/**
|
|
@@ -546,8 +518,7 @@ export type BryntumChecklistFilterComboProps = {
|
|
|
546
518
|
maxHeight? : string|number
|
|
547
519
|
/**
|
|
548
520
|
* *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
|
|
549
|
-
* ...
|
|
550
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-maximizeOnMobile)
|
|
521
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-maximizeOnMobile)
|
|
551
522
|
*/
|
|
552
523
|
maximizeOnMobile? : number|string
|
|
553
524
|
/**
|
|
@@ -561,8 +532,7 @@ export type BryntumChecklistFilterComboProps = {
|
|
|
561
532
|
maxWidth? : string|number
|
|
562
533
|
/**
|
|
563
534
|
* The minimum string length to trigger the filtering, only relevant when [editable](https://bryntum.com/products/grid/docs/api/Core/widget/Combo#config-editable) is `true`.
|
|
564
|
-
* ...
|
|
565
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-minChars)
|
|
535
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-minChars)
|
|
566
536
|
*/
|
|
567
537
|
minChars? : number
|
|
568
538
|
/**
|
|
@@ -583,12 +553,10 @@ export type BryntumChecklistFilterComboProps = {
|
|
|
583
553
|
* When this is configured as `true` a [ResizeObserver](https://developer.mozilla.org/en-US/docs/Web/API/ResizeObserver)
|
|
584
554
|
* is used to monitor this element for size changes caused by either style manipulation, or by CSS
|
|
585
555
|
* layout.
|
|
586
|
-
* ...
|
|
587
|
-
*
|
|
556
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-monitorResize)
|
|
557
|
+
* @property {boolean} immediate Set to `true` to receive resize notifications immediately.
|
|
588
558
|
*/
|
|
589
|
-
monitorResize? : boolean|
|
|
590
|
-
immediate?: boolean
|
|
591
|
-
}
|
|
559
|
+
monitorResize? : boolean|object
|
|
592
560
|
/**
|
|
593
561
|
* A key value which, when typed in a [multiSelect](https://bryntum.com/products/grid/docs/api/Core/widget/Combo#config-multiSelect) Combo, selects the
|
|
594
562
|
* currently active item in the picker, and clears the input field ready for another
|
|
@@ -599,8 +567,7 @@ export type BryntumChecklistFilterComboProps = {
|
|
|
599
567
|
* Name of the field which is used as a key to get/set values from/to the field.
|
|
600
568
|
* Used prior to [ref](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-ref) and [id](#Core/widget/Widget#config-id) in
|
|
601
569
|
* [Container.values](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-values).
|
|
602
|
-
* ...
|
|
603
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-name)
|
|
570
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-name)
|
|
604
571
|
*/
|
|
605
572
|
name? : string
|
|
606
573
|
/**
|
|
@@ -611,10 +578,9 @@ export type BryntumChecklistFilterComboProps = {
|
|
|
611
578
|
/**
|
|
612
579
|
* Configuration object for the [picker](https://bryntum.com/products/grid/docs/api/Core/widget/List) on initialization. Returns the
|
|
613
580
|
* [picker](https://bryntum.com/products/grid/docs/api/Core/widget/List) instance at runtime.
|
|
614
|
-
* ...
|
|
615
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-picker)
|
|
581
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-picker)
|
|
616
582
|
*/
|
|
617
|
-
picker? : ListConfig
|
|
583
|
+
picker? : ListConfig
|
|
618
584
|
/**
|
|
619
585
|
* The name of the element property to which the picker should size and align itself.
|
|
620
586
|
*/
|
|
@@ -631,8 +597,7 @@ export type BryntumChecklistFilterComboProps = {
|
|
|
631
597
|
* Set to `true` when a widget is rendered into another widget's [contentElement](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-contentElement), but must
|
|
632
598
|
* not participate in the standard layout of that widget, and must be positioned relatively to that
|
|
633
599
|
* widget's [contentElement](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-contentElement).
|
|
634
|
-
* ...
|
|
635
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-positioned)
|
|
600
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-positioned)
|
|
636
601
|
*/
|
|
637
602
|
positioned? : boolean
|
|
638
603
|
/**
|
|
@@ -644,22 +609,19 @@ export type BryntumChecklistFilterComboProps = {
|
|
|
644
609
|
* Optionally a [Filter](https://bryntum.com/products/grid/docs/api/Core/util/CollectionFilter) config object which the combo should use for
|
|
645
610
|
* filtering using the typed value.
|
|
646
611
|
* This may use a `filterBy` property to test its `value` against any field in the passed record.
|
|
647
|
-
* ...
|
|
648
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-primaryFilter)
|
|
612
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-primaryFilter)
|
|
649
613
|
*/
|
|
650
614
|
primaryFilter? : CollectionFilterConfig
|
|
651
615
|
/**
|
|
652
616
|
* Makes the field unmodifiable by user action. The input area is not editable, and triggers
|
|
653
617
|
* are unresponsive.
|
|
654
|
-
* ...
|
|
655
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-readOnly)
|
|
618
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-readOnly)
|
|
656
619
|
*/
|
|
657
620
|
readOnly? : boolean
|
|
658
621
|
relayStoreEvents? : boolean
|
|
659
622
|
/**
|
|
660
623
|
* Predefined style to use for the field. Possible values are:
|
|
661
|
-
* ...
|
|
662
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-rendition)
|
|
624
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-rendition)
|
|
663
625
|
*/
|
|
664
626
|
rendition? : 'outlined'|'filled'|string
|
|
665
627
|
/**
|
|
@@ -678,23 +640,26 @@ export type BryntumChecklistFilterComboProps = {
|
|
|
678
640
|
* Configure as `true` to have the component display a translucent ripple when its
|
|
679
641
|
* [focusElement](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-focusElement), or [element](#Core/widget/Widget#property-element) is tapped <em>if the
|
|
680
642
|
* current theme supports ripples</em>. Out of the box, only the Material theme supports ripples.
|
|
681
|
-
* ...
|
|
682
|
-
* [
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
643
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-ripple)
|
|
644
|
+
* @property {string} [delegate] A CSS selector to filter which child elements trigger ripples. By default, the ripple is clipped to the triggering element.
|
|
645
|
+
* @property {string} [color] A CSS color name or specification.
|
|
646
|
+
* @property {number} [radius] The ending radius of the ripple. Note that it will be clipped by the target element by default.
|
|
647
|
+
* @property {string} [clip] A string which describes how to clip the ripple if it is not to be clipped to the default element. Either the property of the widget to use as the clipping element, or a selector to allow clipping to the closest matching ancestor to the target element.
|
|
648
|
+
*/
|
|
649
|
+
ripple? : boolean|object
|
|
650
|
+
/**
|
|
651
|
+
* The ARIA role to apply to this widget's element. By default, this is set to `'presentation'` to avoid
|
|
652
|
+
* accidentally applying a role which may interfere with screen readers.
|
|
653
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-role)
|
|
654
|
+
*/
|
|
655
|
+
role? : string
|
|
690
656
|
/**
|
|
691
657
|
* If you are rendering this widget to a shadow root inside a web component, set this config to the shadowRoot. If not inside a web component, set it to `document.body`
|
|
692
658
|
*/
|
|
693
659
|
rootElement? : ShadowRoot|HTMLElement
|
|
694
660
|
/**
|
|
695
661
|
* This may be configured as `true` to make the widget's element use the `direction:rtl` style.
|
|
696
|
-
* ...
|
|
697
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-rtl)
|
|
662
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-rtl)
|
|
698
663
|
*/
|
|
699
664
|
rtl? : boolean
|
|
700
665
|
/**
|
|
@@ -708,8 +673,7 @@ export type BryntumChecklistFilterComboProps = {
|
|
|
708
673
|
searchText? : string
|
|
709
674
|
/**
|
|
710
675
|
* *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
|
|
711
|
-
* ...
|
|
712
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-showAnimation)
|
|
676
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-showAnimation)
|
|
713
677
|
*/
|
|
714
678
|
showAnimation? : boolean|object
|
|
715
679
|
/**
|
|
@@ -747,8 +711,7 @@ export type BryntumChecklistFilterComboProps = {
|
|
|
747
711
|
* 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
|
|
748
712
|
* [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
|
|
749
713
|
* this widget:
|
|
750
|
-
* ...
|
|
751
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-tab)
|
|
714
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-tab)
|
|
752
715
|
*/
|
|
753
716
|
tab? : boolean|TabConfig
|
|
754
717
|
/**
|
|
@@ -756,14 +719,12 @@ export type BryntumChecklistFilterComboProps = {
|
|
|
756
719
|
* is equivalent to natural tab order, but is unnecessary for fields since they are naturally tabbable
|
|
757
720
|
* (i.e., accessible via the TAB key). Setting to `-1` disables tabbability but allows for focus to be set
|
|
758
721
|
* to the element programmatically.
|
|
759
|
-
* ...
|
|
760
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-tabIndex)
|
|
722
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-tabIndex)
|
|
761
723
|
*/
|
|
762
724
|
tabIndex? : number
|
|
763
725
|
/**
|
|
764
726
|
* Text alignment: 'left', 'center' or 'right'. Also accepts direction neutral 'start' and 'end'.
|
|
765
|
-
* ...
|
|
766
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-textAlign)
|
|
727
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-textAlign)
|
|
767
728
|
*/
|
|
768
729
|
textAlign? : 'left'|'center'|'right'|'start'|'end'
|
|
769
730
|
/**
|
|
@@ -772,30 +733,26 @@ export type BryntumChecklistFilterComboProps = {
|
|
|
772
733
|
title? : string
|
|
773
734
|
/**
|
|
774
735
|
* Tooltip for the widget, either as a string or as a Tooltip config object.
|
|
775
|
-
* ...
|
|
776
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-tooltip)
|
|
736
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-tooltip)
|
|
777
737
|
*/
|
|
778
738
|
tooltip? : string|TooltipConfig|null
|
|
779
739
|
/**
|
|
780
740
|
* How to query the store upon click of the expand trigger. Specify one of these values:
|
|
781
|
-
* ...
|
|
782
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-triggerAction)
|
|
741
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-triggerAction)
|
|
783
742
|
*/
|
|
784
743
|
triggerAction? : 'all'|'last'|null
|
|
785
744
|
/**
|
|
786
745
|
* The triggers to add either before or after the input field. Each property name is the reference by which
|
|
787
746
|
* an instantiated Trigger Widget may be retrieved from the live `triggers` property.
|
|
788
|
-
* ...
|
|
789
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-triggers)
|
|
747
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-triggers)
|
|
790
748
|
*/
|
|
791
|
-
triggers? : Record<string, FieldTriggerConfig
|
|
749
|
+
triggers? : Record<string, FieldTriggerConfig>
|
|
792
750
|
type? : 'checklistfiltercombo'
|
|
793
751
|
/**
|
|
794
752
|
* Custom CSS class name suffixes to apply to the elements rendered by this widget. This may be specified
|
|
795
753
|
* as a space separated string, an array of strings, or as an object in which property names with truthy
|
|
796
754
|
* values are used as the class names.
|
|
797
|
-
* ...
|
|
798
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-ui)
|
|
755
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-ui)
|
|
799
756
|
*/
|
|
800
757
|
ui? : string|object
|
|
801
758
|
/**
|
|
@@ -814,8 +771,7 @@ export type BryntumChecklistFilterComboProps = {
|
|
|
814
771
|
/**
|
|
815
772
|
* Field used for item value when populating from store. Setting this to `null` will
|
|
816
773
|
* yield the selected record as the Combo's [value](https://bryntum.com/products/grid/docs/api/Core/widget/Combo#property-value).
|
|
817
|
-
* ...
|
|
818
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-valueField)
|
|
774
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-valueField)
|
|
819
775
|
*/
|
|
820
776
|
valueField? : string|null
|
|
821
777
|
/**
|
|
@@ -831,14 +787,12 @@ export type BryntumChecklistFilterComboProps = {
|
|
|
831
787
|
width? : string|number
|
|
832
788
|
/**
|
|
833
789
|
* The x position for the widget.
|
|
834
|
-
* ...
|
|
835
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-x)
|
|
790
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-x)
|
|
836
791
|
*/
|
|
837
792
|
x? : number
|
|
838
793
|
/**
|
|
839
794
|
* The y position for the widget.
|
|
840
|
-
* ...
|
|
841
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-y)
|
|
795
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-y)
|
|
842
796
|
*/
|
|
843
797
|
y? : number
|
|
844
798
|
|
|
@@ -864,7 +818,7 @@ export type BryntumChecklistFilterComboProps = {
|
|
|
864
818
|
* @param {object} event Event object
|
|
865
819
|
* @param {Core.widget.Widget} event.source The widget being hidden.
|
|
866
820
|
*/
|
|
867
|
-
onBeforeHide? : ((event: { source: Widget }) =>
|
|
821
|
+
onBeforeHide? : ((event: { source: Widget }) => boolean|void)|string
|
|
868
822
|
/**
|
|
869
823
|
* Triggered before a widget is shown. Return `false` to prevent the action.
|
|
870
824
|
* @param {object} event Event object
|
|
@@ -873,8 +827,7 @@ export type BryntumChecklistFilterComboProps = {
|
|
|
873
827
|
onBeforeShow? : ((event: { source: Widget|any }) => Promise<boolean>|boolean|void)|string
|
|
874
828
|
/**
|
|
875
829
|
* Fires when any other event is fired from the object.
|
|
876
|
-
* ...
|
|
877
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#event-catchAll)
|
|
830
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#event-catchAll)
|
|
878
831
|
* @param {object} event Event object
|
|
879
832
|
* @param {{[key: string]: any, type: string}} event.event The Object that contains event details
|
|
880
833
|
* @param {string} event.event.type The type of the event which is caught by the listener
|
|
@@ -894,8 +847,7 @@ export type BryntumChecklistFilterComboProps = {
|
|
|
894
847
|
onChange? : ((event: { source: Field|any, value: string|number|boolean|any, oldValue: string|number|boolean|any, valid: boolean, event: Event, userAction: boolean, checked: boolean }) => void)|string
|
|
895
848
|
/**
|
|
896
849
|
* Fired when this field is [cleared](https://bryntum.com/products/grid/docs/api/Core/widget/Field#function-clear).
|
|
897
|
-
* ...
|
|
898
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#event-clear)
|
|
850
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#event-clear)
|
|
899
851
|
* @param {object} event Event object
|
|
900
852
|
* @param {Core.widget.Field,any} event.source This Field
|
|
901
853
|
*/
|
|
@@ -954,8 +906,7 @@ export type BryntumChecklistFilterComboProps = {
|
|
|
954
906
|
/**
|
|
955
907
|
* Triggered when a widget which had been in a non-visible state for any reason
|
|
956
908
|
* achieves visibility.
|
|
957
|
-
* ...
|
|
958
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#event-paint)
|
|
909
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#event-paint)
|
|
959
910
|
* @param {object} event Event object
|
|
960
911
|
* @param {Core.widget.Widget} event.source The widget being painted.
|
|
961
912
|
* @param {boolean} event.firstPaint `true` if this is the first paint.
|
|
@@ -1028,6 +979,7 @@ export class BryntumChecklistFilterCombo extends React.Component<BryntumChecklis
|
|
|
1028
979
|
'cacheLastResult',
|
|
1029
980
|
'caseSensitive',
|
|
1030
981
|
'centered',
|
|
982
|
+
'checkValidity',
|
|
1031
983
|
'chipView',
|
|
1032
984
|
'clearable',
|
|
1033
985
|
'clearTextOnPickerHide',
|
|
@@ -1098,6 +1050,7 @@ export class BryntumChecklistFilterCombo extends React.Component<BryntumChecklis
|
|
|
1098
1050
|
'relayStoreEvents',
|
|
1099
1051
|
'revertOnEscape',
|
|
1100
1052
|
'ripple',
|
|
1053
|
+
'role',
|
|
1101
1054
|
'rootElement',
|
|
1102
1055
|
'scrollAction',
|
|
1103
1056
|
'showAnimation',
|
|
@@ -1185,9 +1138,7 @@ export class BryntumChecklistFilterCombo extends React.Component<BryntumChecklis
|
|
|
1185
1138
|
];
|
|
1186
1139
|
|
|
1187
1140
|
static propertyNames = [
|
|
1188
|
-
'anchorSize',
|
|
1189
1141
|
'content',
|
|
1190
|
-
'focusVisible',
|
|
1191
1142
|
'formula',
|
|
1192
1143
|
'html',
|
|
1193
1144
|
'input',
|