@bryntum/grid-react-thin 7.2.4 → 7.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -4
- package/lib/BryntumAIFilterField.d.ts +7 -15
- package/lib/BryntumAIFilterField.js +1 -2
- package/lib/BryntumAIFilterField.js.map +1 -1
- package/lib/BryntumChecklistFilterCombo.d.ts +10 -18
- package/lib/BryntumChecklistFilterCombo.js +1 -2
- package/lib/BryntumChecklistFilterCombo.js.map +1 -1
- package/lib/BryntumGrid.d.ts +22 -33
- package/lib/BryntumGrid.js +2 -2
- package/lib/BryntumGrid.js.map +1 -1
- package/lib/BryntumGridBase.d.ts +22 -33
- package/lib/BryntumGridBase.js +2 -2
- package/lib/BryntumGridBase.js.map +1 -1
- package/lib/BryntumGridChartDesigner.d.ts +6 -14
- package/lib/BryntumGridChartDesigner.js +1 -2
- package/lib/BryntumGridChartDesigner.js.map +1 -1
- package/lib/BryntumGridFieldFilterPicker.d.ts +7 -14
- package/lib/BryntumGridFieldFilterPicker.js +2 -5
- package/lib/BryntumGridFieldFilterPicker.js.map +1 -1
- package/lib/BryntumGridFieldFilterPickerGroup.d.ts +7 -14
- package/lib/BryntumGridFieldFilterPickerGroup.js +2 -5
- package/lib/BryntumGridFieldFilterPickerGroup.js.map +1 -1
- package/lib/BryntumGroupBar.d.ts +6 -14
- package/lib/BryntumGroupBar.js +1 -2
- package/lib/BryntumGroupBar.js.map +1 -1
- package/lib/BryntumTreeCombo.d.ts +10 -18
- package/lib/BryntumTreeCombo.js +1 -2
- package/lib/BryntumTreeCombo.js.map +1 -1
- package/lib/BryntumTreeGrid.d.ts +22 -33
- 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 +74 -119
- package/src/BryntumChecklistFilterCombo.tsx +91 -150
- package/src/BryntumGrid.tsx +204 -291
- package/src/BryntumGridBase.tsx +204 -291
- package/src/BryntumGridChartDesigner.tsx +59 -95
- package/src/BryntumGridFieldFilterPicker.tsx +82 -132
- package/src/BryntumGridFieldFilterPickerGroup.tsx +81 -130
- package/src/BryntumGroupBar.tsx +65 -105
- package/src/BryntumTreeCombo.tsx +92 -152
- package/src/BryntumTreeGrid.tsx +204 -291
- 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
|
/**
|
|
@@ -108,8 +100,7 @@ export type BryntumChecklistFilterComboProps = {
|
|
|
108
100
|
/**
|
|
109
101
|
* A config object to configure the [ChipView](https://bryntum.com/products/grid/docs/api/Core/widget/ChipView) to display the
|
|
110
102
|
* 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)
|
|
103
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-chipView)
|
|
113
104
|
*/
|
|
114
105
|
chipView? : ChipViewConfig
|
|
115
106
|
/**
|
|
@@ -134,15 +125,13 @@ export type BryntumChecklistFilterComboProps = {
|
|
|
134
125
|
* Custom CSS classes to add to element.
|
|
135
126
|
* May be specified as a space separated string, or as an object in which property names
|
|
136
127
|
* 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)
|
|
128
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-cls)
|
|
139
129
|
*/
|
|
140
130
|
cls? : string|object
|
|
141
131
|
/**
|
|
142
132
|
* Applies the specified color to the widget, by setting the `--b-primary` CSS variable in the widgets
|
|
143
133
|
* `style` block.
|
|
144
|
-
* ...
|
|
145
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-color)
|
|
134
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-color)
|
|
146
135
|
*/
|
|
147
136
|
color? : Color
|
|
148
137
|
/**
|
|
@@ -159,15 +148,13 @@ export type BryntumChecklistFilterComboProps = {
|
|
|
159
148
|
* The configuration for additional items associated to this field. This is typically used to add contextual
|
|
160
149
|
* fields related to a [checkbox](https://bryntum.com/products/grid/docs/api/Core/widget/Checkbox) or [radio button](#Core/widget/Radio). See
|
|
161
150
|
* these classes for examples of nested fields.
|
|
162
|
-
* ...
|
|
163
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-container)
|
|
151
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-container)
|
|
164
152
|
*/
|
|
165
|
-
container? : Record<string, GridContainerItemConfig>|GridContainerItemConfig[]|FieldContainerConfig
|
|
153
|
+
container? : Record<string, GridContainerItemConfig>|GridContainerItemConfig[]|FieldContainerConfig
|
|
166
154
|
/**
|
|
167
155
|
* The config controls how the value of nested items are handled when a parent container gets or sets its
|
|
168
156
|
* [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)
|
|
157
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-containValues)
|
|
171
158
|
* @param {Core.widget.Field} field Field instance
|
|
172
159
|
* @returns {boolean}
|
|
173
160
|
*/
|
|
@@ -176,16 +163,14 @@ export type BryntumChecklistFilterComboProps = {
|
|
|
176
163
|
* Custom CSS classes to add to the [contentElement](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-contentElement).
|
|
177
164
|
* May be specified as a space separated string, or as an object in which property names
|
|
178
165
|
* 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)
|
|
166
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-contentElementCls)
|
|
181
167
|
*/
|
|
182
168
|
contentElementCls? : string|object
|
|
183
169
|
/**
|
|
184
170
|
* If configured as `true`, this means that when an unmatched string is typed into the
|
|
185
171
|
* 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
172
|
* 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)
|
|
173
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-createOnUnmatched)
|
|
189
174
|
* @param {string} name Record name
|
|
190
175
|
* @param {Core.widget.Combo} combo Combo instance
|
|
191
176
|
* @returns {Core.data.Model} New record
|
|
@@ -206,16 +191,15 @@ export type BryntumChecklistFilterComboProps = {
|
|
|
206
191
|
*/
|
|
207
192
|
defaultBindProperty? : string
|
|
208
193
|
/**
|
|
209
|
-
* Check for CSS compatibility issues
|
|
210
|
-
*
|
|
211
|
-
* [
|
|
194
|
+
* Check for CSS compatibility and inclusion related issues and try to auto fix them. Performs the following
|
|
195
|
+
* checks:
|
|
196
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-detectCSSCompatibilityIssues)
|
|
212
197
|
*/
|
|
213
198
|
detectCSSCompatibilityIssues? : boolean
|
|
214
199
|
/**
|
|
215
200
|
* 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
201
|
* 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)
|
|
202
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-disabled)
|
|
219
203
|
*/
|
|
220
204
|
disabled? : boolean|'inert'
|
|
221
205
|
/**
|
|
@@ -228,26 +212,23 @@ export type BryntumChecklistFilterComboProps = {
|
|
|
228
212
|
* @param {Core.widget.Combo} combo A reference to this Combo
|
|
229
213
|
* @returns {string,void}
|
|
230
214
|
*/
|
|
231
|
-
displayValueRenderer? : (record: Model
|
|
215
|
+
displayValueRenderer? : (record: Model, combo: Combo) => string|void
|
|
232
216
|
/**
|
|
233
217
|
* 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
218
|
* [strips collection](https://bryntum.com/products/grid/docs/api/Core/widget/Panel#config-strips). Typical values for this config are `'top'`,
|
|
235
219
|
* `'bottom'`, `'left'`, or `'right'`, which cause the widget to be placed on that side of the panel's
|
|
236
220
|
* body. Such widgets are called "edge strips".
|
|
237
|
-
* ...
|
|
238
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-dock)
|
|
221
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-dock)
|
|
239
222
|
*/
|
|
240
223
|
dock? : 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
|
|
241
224
|
/**
|
|
242
225
|
* *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
|
|
243
226
|
* Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´
|
|
244
227
|
* property which controls when a drag should start.
|
|
245
|
-
* ...
|
|
246
|
-
*
|
|
228
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-draggable)
|
|
229
|
+
* @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
|
|
247
230
|
*/
|
|
248
|
-
draggable? : boolean|
|
|
249
|
-
handleSelector?: string
|
|
250
|
-
}
|
|
231
|
+
draggable? : boolean|object
|
|
251
232
|
/**
|
|
252
233
|
* User can edit text in text field (otherwise only pick from attached picker)
|
|
253
234
|
*/
|
|
@@ -255,21 +236,18 @@ export type BryntumChecklistFilterComboProps = {
|
|
|
255
236
|
/**
|
|
256
237
|
* An object specifying attributes to assign to the root element of this widget.
|
|
257
238
|
* 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)
|
|
239
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-elementAttributes)
|
|
260
240
|
*/
|
|
261
241
|
elementAttributes? : Record<string, string|null>
|
|
262
242
|
/**
|
|
263
243
|
* 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)
|
|
244
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-emptyText)
|
|
266
245
|
*/
|
|
267
246
|
emptyText? : string
|
|
268
247
|
/**
|
|
269
248
|
* 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
249
|
* any filters to the server upon load.
|
|
271
|
-
* ...
|
|
272
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-encodeFilterParams)
|
|
250
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-encodeFilterParams)
|
|
273
251
|
* @param {object[]} filters filters
|
|
274
252
|
* @returns {object[]} array of values
|
|
275
253
|
*/
|
|
@@ -283,8 +261,7 @@ export type BryntumChecklistFilterComboProps = {
|
|
|
283
261
|
/**
|
|
284
262
|
* The name of an operator type as implemented in [operator](https://bryntum.com/products/grid/docs/api/Core/util/CollectionFilter#config-operator)
|
|
285
263
|
* 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)
|
|
264
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-filterOperator)
|
|
288
265
|
*/
|
|
289
266
|
filterOperator? : CollectionCompareOperator
|
|
290
267
|
/**
|
|
@@ -325,8 +302,7 @@ export type BryntumChecklistFilterComboProps = {
|
|
|
325
302
|
hidden? : boolean
|
|
326
303
|
/**
|
|
327
304
|
* *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)
|
|
305
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-hideAnimation)
|
|
330
306
|
*/
|
|
331
307
|
hideAnimation? : boolean|object
|
|
332
308
|
/**
|
|
@@ -347,8 +323,7 @@ export type BryntumChecklistFilterComboProps = {
|
|
|
347
323
|
/**
|
|
348
324
|
* An optional string to display inside the input field as an overlay. This can be useful for displaying
|
|
349
325
|
* a field's units.
|
|
350
|
-
* ...
|
|
351
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-hint)
|
|
326
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-hint)
|
|
352
327
|
* @param {object} data A data object
|
|
353
328
|
* @param {Core.widget.Field} data.source A reference to the field instance
|
|
354
329
|
* @param {any} data.value The current value of the field
|
|
@@ -359,8 +334,7 @@ export type BryntumChecklistFilterComboProps = {
|
|
|
359
334
|
* 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
335
|
* Since this can allow malicious content to be executed, be sure not to include user-entered data or to
|
|
361
336
|
* 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)
|
|
337
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-hintHtml)
|
|
364
338
|
* @param {object} data A data object
|
|
365
339
|
* @param {Core.widget.Field} data.source A reference to the field instance
|
|
366
340
|
* @param {any} data.value The current value of the field
|
|
@@ -373,23 +347,20 @@ export type BryntumChecklistFilterComboProps = {
|
|
|
373
347
|
id? : string
|
|
374
348
|
/**
|
|
375
349
|
* 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)
|
|
350
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-ignoreParentReadOnly)
|
|
378
351
|
*/
|
|
379
352
|
ignoreParentReadOnly? : boolean
|
|
380
353
|
/**
|
|
381
354
|
* Set this config to `true` to always display items horizontally along with this field. This assigns an
|
|
382
355
|
* [hbox](https://bryntum.com/products/grid/docs/api/Core/widget/layout/Box) as the [layout](#Core/widget/Container#config-layout) to the
|
|
383
356
|
* [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)
|
|
357
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-inline)
|
|
386
358
|
*/
|
|
387
359
|
inline? : boolean
|
|
388
360
|
/**
|
|
389
361
|
* Configure this as `true` to render the dropdown list as a permanently visible list
|
|
390
362
|
* 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)
|
|
363
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-inlinePicker)
|
|
393
364
|
*/
|
|
394
365
|
inlinePicker? : boolean
|
|
395
366
|
/**
|
|
@@ -427,30 +398,26 @@ export type BryntumChecklistFilterComboProps = {
|
|
|
427
398
|
insertFirst? : HTMLElement|string
|
|
428
399
|
/**
|
|
429
400
|
* 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)
|
|
401
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-items)
|
|
432
402
|
*/
|
|
433
403
|
items? : object[]|string[]|object
|
|
434
404
|
/**
|
|
435
405
|
* An object whose keys are the [key](https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent/key) name
|
|
436
406
|
* and optional modifier prefixes: `'Ctrl+'`, `'Alt+'`, `'Meta+'`, and `'Shift+'` (case-insensitive). The values
|
|
437
407
|
* 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)
|
|
408
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-keyMap)
|
|
440
409
|
*/
|
|
441
410
|
keyMap? : Record<string, KeyMapConfig>
|
|
442
411
|
/**
|
|
443
412
|
* The delay in milliseconds to wait after the last keystroke before triggering a change event.
|
|
444
413
|
* Set to 0 to not trigger change events from keystrokes (listen for input event instead to have
|
|
445
414
|
* 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)
|
|
415
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-keyStrokeChangeDelay)
|
|
448
416
|
*/
|
|
449
417
|
keyStrokeChangeDelay? : number
|
|
450
418
|
/**
|
|
451
419
|
* 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)
|
|
420
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-keyStrokeFilterDelay)
|
|
454
421
|
*/
|
|
455
422
|
keyStrokeFilterDelay? : number
|
|
456
423
|
/**
|
|
@@ -463,15 +430,15 @@ export type BryntumChecklistFilterComboProps = {
|
|
|
463
430
|
labelCls? : string|object
|
|
464
431
|
/**
|
|
465
432
|
* 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)
|
|
433
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-labelPosition)
|
|
468
434
|
*/
|
|
469
435
|
labelPosition? : 'before'|'above'|null
|
|
470
436
|
/**
|
|
471
437
|
* The labels to add either before or after the input field.
|
|
472
438
|
* Each label may have the following properties:
|
|
473
|
-
* ...
|
|
474
|
-
*
|
|
439
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-labels)
|
|
440
|
+
* @property {string} html Label text
|
|
441
|
+
* @property {'start','end'} align Which end of the file the label should go
|
|
475
442
|
*/
|
|
476
443
|
labels? : object[]
|
|
477
444
|
/**
|
|
@@ -484,8 +451,7 @@ export type BryntumChecklistFilterComboProps = {
|
|
|
484
451
|
listCls? : string
|
|
485
452
|
/**
|
|
486
453
|
* The listener set for this object.
|
|
487
|
-
* ...
|
|
488
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-listeners)
|
|
454
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-listeners)
|
|
489
455
|
*/
|
|
490
456
|
listeners? : ChecklistFilterComboListeners
|
|
491
457
|
/**
|
|
@@ -496,18 +462,16 @@ export type BryntumChecklistFilterComboProps = {
|
|
|
496
462
|
listItemPillTpl? : (record: Model) => string
|
|
497
463
|
/**
|
|
498
464
|
* 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)
|
|
465
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-listItemTpl)
|
|
501
466
|
* @param {Core.data.Model} record The record representing the item being rendered
|
|
502
467
|
* @returns {string,void}
|
|
503
468
|
*/
|
|
504
|
-
listItemTpl? : (record: Model
|
|
469
|
+
listItemTpl? : (record: Model) => string|void
|
|
505
470
|
/**
|
|
506
471
|
* A class translations of which are used for translating this entity.
|
|
507
472
|
* This is often used when translations of an item are defined on its container class.
|
|
508
473
|
* For example:
|
|
509
|
-
* ...
|
|
510
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-localeClass)
|
|
474
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-localeClass)
|
|
511
475
|
*/
|
|
512
476
|
localeClass? : typeof Base
|
|
513
477
|
/**
|
|
@@ -519,8 +483,7 @@ export type BryntumChecklistFilterComboProps = {
|
|
|
519
483
|
* In case there is a need to localize not typical value (not a String value or a field with re-defined setter/getter),
|
|
520
484
|
* you could use 'localeKey' meta configuration.
|
|
521
485
|
* Example:
|
|
522
|
-
* ...
|
|
523
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-localizableProperties)
|
|
486
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-localizableProperties)
|
|
524
487
|
*/
|
|
525
488
|
localizableProperties? : string[]
|
|
526
489
|
/**
|
|
@@ -546,8 +509,7 @@ export type BryntumChecklistFilterComboProps = {
|
|
|
546
509
|
maxHeight? : string|number
|
|
547
510
|
/**
|
|
548
511
|
* *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)
|
|
512
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-maximizeOnMobile)
|
|
551
513
|
*/
|
|
552
514
|
maximizeOnMobile? : number|string
|
|
553
515
|
/**
|
|
@@ -561,8 +523,7 @@ export type BryntumChecklistFilterComboProps = {
|
|
|
561
523
|
maxWidth? : string|number
|
|
562
524
|
/**
|
|
563
525
|
* 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)
|
|
526
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-minChars)
|
|
566
527
|
*/
|
|
567
528
|
minChars? : number
|
|
568
529
|
/**
|
|
@@ -583,12 +544,10 @@ export type BryntumChecklistFilterComboProps = {
|
|
|
583
544
|
* When this is configured as `true` a [ResizeObserver](https://developer.mozilla.org/en-US/docs/Web/API/ResizeObserver)
|
|
584
545
|
* is used to monitor this element for size changes caused by either style manipulation, or by CSS
|
|
585
546
|
* layout.
|
|
586
|
-
* ...
|
|
587
|
-
*
|
|
547
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-monitorResize)
|
|
548
|
+
* @property {boolean} immediate Set to `true` to receive resize notifications immediately.
|
|
588
549
|
*/
|
|
589
|
-
monitorResize? : boolean|
|
|
590
|
-
immediate?: boolean
|
|
591
|
-
}
|
|
550
|
+
monitorResize? : boolean|object
|
|
592
551
|
/**
|
|
593
552
|
* 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
553
|
* currently active item in the picker, and clears the input field ready for another
|
|
@@ -599,8 +558,7 @@ export type BryntumChecklistFilterComboProps = {
|
|
|
599
558
|
* Name of the field which is used as a key to get/set values from/to the field.
|
|
600
559
|
* 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
560
|
* [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)
|
|
561
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-name)
|
|
604
562
|
*/
|
|
605
563
|
name? : string
|
|
606
564
|
/**
|
|
@@ -611,10 +569,9 @@ export type BryntumChecklistFilterComboProps = {
|
|
|
611
569
|
/**
|
|
612
570
|
* Configuration object for the [picker](https://bryntum.com/products/grid/docs/api/Core/widget/List) on initialization. Returns the
|
|
613
571
|
* [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)
|
|
572
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-picker)
|
|
616
573
|
*/
|
|
617
|
-
picker? : ListConfig
|
|
574
|
+
picker? : ListConfig
|
|
618
575
|
/**
|
|
619
576
|
* The name of the element property to which the picker should size and align itself.
|
|
620
577
|
*/
|
|
@@ -631,8 +588,7 @@ export type BryntumChecklistFilterComboProps = {
|
|
|
631
588
|
* 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
589
|
* not participate in the standard layout of that widget, and must be positioned relatively to that
|
|
633
590
|
* 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)
|
|
591
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-positioned)
|
|
636
592
|
*/
|
|
637
593
|
positioned? : boolean
|
|
638
594
|
/**
|
|
@@ -644,22 +600,19 @@ export type BryntumChecklistFilterComboProps = {
|
|
|
644
600
|
* Optionally a [Filter](https://bryntum.com/products/grid/docs/api/Core/util/CollectionFilter) config object which the combo should use for
|
|
645
601
|
* filtering using the typed value.
|
|
646
602
|
* 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)
|
|
603
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-primaryFilter)
|
|
649
604
|
*/
|
|
650
605
|
primaryFilter? : CollectionFilterConfig
|
|
651
606
|
/**
|
|
652
607
|
* Makes the field unmodifiable by user action. The input area is not editable, and triggers
|
|
653
608
|
* are unresponsive.
|
|
654
|
-
* ...
|
|
655
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-readOnly)
|
|
609
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-readOnly)
|
|
656
610
|
*/
|
|
657
611
|
readOnly? : boolean
|
|
658
612
|
relayStoreEvents? : boolean
|
|
659
613
|
/**
|
|
660
614
|
* 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)
|
|
615
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-rendition)
|
|
663
616
|
*/
|
|
664
617
|
rendition? : 'outlined'|'filled'|string
|
|
665
618
|
/**
|
|
@@ -678,23 +631,26 @@ export type BryntumChecklistFilterComboProps = {
|
|
|
678
631
|
* Configure as `true` to have the component display a translucent ripple when its
|
|
679
632
|
* [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
633
|
* current theme supports ripples</em>. Out of the box, only the Material theme supports ripples.
|
|
681
|
-
* ...
|
|
682
|
-
* [
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
634
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-ripple)
|
|
635
|
+
* @property {string} [delegate] A CSS selector to filter which child elements trigger ripples. By default, the ripple is clipped to the triggering element.
|
|
636
|
+
* @property {string} [color] A CSS color name or specification.
|
|
637
|
+
* @property {number} [radius] The ending radius of the ripple. Note that it will be clipped by the target element by default.
|
|
638
|
+
* @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.
|
|
639
|
+
*/
|
|
640
|
+
ripple? : boolean|object
|
|
641
|
+
/**
|
|
642
|
+
* The ARIA role to apply to this widget's element. By default, this is set to `'presentation'` to avoid
|
|
643
|
+
* accidentally applying a role which may interfere with screen readers.
|
|
644
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-role)
|
|
645
|
+
*/
|
|
646
|
+
role? : string
|
|
690
647
|
/**
|
|
691
648
|
* 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
649
|
*/
|
|
693
650
|
rootElement? : ShadowRoot|HTMLElement
|
|
694
651
|
/**
|
|
695
652
|
* 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)
|
|
653
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-rtl)
|
|
698
654
|
*/
|
|
699
655
|
rtl? : boolean
|
|
700
656
|
/**
|
|
@@ -708,8 +664,7 @@ export type BryntumChecklistFilterComboProps = {
|
|
|
708
664
|
searchText? : string
|
|
709
665
|
/**
|
|
710
666
|
* *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)
|
|
667
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-showAnimation)
|
|
713
668
|
*/
|
|
714
669
|
showAnimation? : boolean|object
|
|
715
670
|
/**
|
|
@@ -747,8 +702,7 @@ export type BryntumChecklistFilterComboProps = {
|
|
|
747
702
|
* 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
703
|
* [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
704
|
* this widget:
|
|
750
|
-
* ...
|
|
751
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-tab)
|
|
705
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-tab)
|
|
752
706
|
*/
|
|
753
707
|
tab? : boolean|TabConfig
|
|
754
708
|
/**
|
|
@@ -756,14 +710,12 @@ export type BryntumChecklistFilterComboProps = {
|
|
|
756
710
|
* is equivalent to natural tab order, but is unnecessary for fields since they are naturally tabbable
|
|
757
711
|
* (i.e., accessible via the TAB key). Setting to `-1` disables tabbability but allows for focus to be set
|
|
758
712
|
* to the element programmatically.
|
|
759
|
-
* ...
|
|
760
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-tabIndex)
|
|
713
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-tabIndex)
|
|
761
714
|
*/
|
|
762
715
|
tabIndex? : number
|
|
763
716
|
/**
|
|
764
717
|
* 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)
|
|
718
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-textAlign)
|
|
767
719
|
*/
|
|
768
720
|
textAlign? : 'left'|'center'|'right'|'start'|'end'
|
|
769
721
|
/**
|
|
@@ -772,30 +724,26 @@ export type BryntumChecklistFilterComboProps = {
|
|
|
772
724
|
title? : string
|
|
773
725
|
/**
|
|
774
726
|
* 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)
|
|
727
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-tooltip)
|
|
777
728
|
*/
|
|
778
729
|
tooltip? : string|TooltipConfig|null
|
|
779
730
|
/**
|
|
780
731
|
* 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)
|
|
732
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-triggerAction)
|
|
783
733
|
*/
|
|
784
734
|
triggerAction? : 'all'|'last'|null
|
|
785
735
|
/**
|
|
786
736
|
* The triggers to add either before or after the input field. Each property name is the reference by which
|
|
787
737
|
* 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)
|
|
738
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-triggers)
|
|
790
739
|
*/
|
|
791
|
-
triggers? : Record<string, FieldTriggerConfig
|
|
740
|
+
triggers? : Record<string, FieldTriggerConfig>
|
|
792
741
|
type? : 'checklistfiltercombo'
|
|
793
742
|
/**
|
|
794
743
|
* Custom CSS class name suffixes to apply to the elements rendered by this widget. This may be specified
|
|
795
744
|
* as a space separated string, an array of strings, or as an object in which property names with truthy
|
|
796
745
|
* values are used as the class names.
|
|
797
|
-
* ...
|
|
798
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-ui)
|
|
746
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-ui)
|
|
799
747
|
*/
|
|
800
748
|
ui? : string|object
|
|
801
749
|
/**
|
|
@@ -814,8 +762,7 @@ export type BryntumChecklistFilterComboProps = {
|
|
|
814
762
|
/**
|
|
815
763
|
* Field used for item value when populating from store. Setting this to `null` will
|
|
816
764
|
* 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)
|
|
765
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-valueField)
|
|
819
766
|
*/
|
|
820
767
|
valueField? : string|null
|
|
821
768
|
/**
|
|
@@ -831,14 +778,12 @@ export type BryntumChecklistFilterComboProps = {
|
|
|
831
778
|
width? : string|number
|
|
832
779
|
/**
|
|
833
780
|
* The x position for the widget.
|
|
834
|
-
* ...
|
|
835
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-x)
|
|
781
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-x)
|
|
836
782
|
*/
|
|
837
783
|
x? : number
|
|
838
784
|
/**
|
|
839
785
|
* The y position for the widget.
|
|
840
|
-
* ...
|
|
841
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-y)
|
|
786
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-y)
|
|
842
787
|
*/
|
|
843
788
|
y? : number
|
|
844
789
|
|
|
@@ -873,8 +818,7 @@ export type BryntumChecklistFilterComboProps = {
|
|
|
873
818
|
onBeforeShow? : ((event: { source: Widget|any }) => Promise<boolean>|boolean|void)|string
|
|
874
819
|
/**
|
|
875
820
|
* 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)
|
|
821
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#event-catchAll)
|
|
878
822
|
* @param {object} event Event object
|
|
879
823
|
* @param {{[key: string]: any, type: string}} event.event The Object that contains event details
|
|
880
824
|
* @param {string} event.event.type The type of the event which is caught by the listener
|
|
@@ -894,8 +838,7 @@ export type BryntumChecklistFilterComboProps = {
|
|
|
894
838
|
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
839
|
/**
|
|
896
840
|
* 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)
|
|
841
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#event-clear)
|
|
899
842
|
* @param {object} event Event object
|
|
900
843
|
* @param {Core.widget.Field,any} event.source This Field
|
|
901
844
|
*/
|
|
@@ -954,8 +897,7 @@ export type BryntumChecklistFilterComboProps = {
|
|
|
954
897
|
/**
|
|
955
898
|
* Triggered when a widget which had been in a non-visible state for any reason
|
|
956
899
|
* achieves visibility.
|
|
957
|
-
* ...
|
|
958
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#event-paint)
|
|
900
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#event-paint)
|
|
959
901
|
* @param {object} event Event object
|
|
960
902
|
* @param {Core.widget.Widget} event.source The widget being painted.
|
|
961
903
|
* @param {boolean} event.firstPaint `true` if this is the first paint.
|
|
@@ -1098,6 +1040,7 @@ export class BryntumChecklistFilterCombo extends React.Component<BryntumChecklis
|
|
|
1098
1040
|
'relayStoreEvents',
|
|
1099
1041
|
'revertOnEscape',
|
|
1100
1042
|
'ripple',
|
|
1043
|
+
'role',
|
|
1101
1044
|
'rootElement',
|
|
1102
1045
|
'scrollAction',
|
|
1103
1046
|
'showAnimation',
|
|
@@ -1185,9 +1128,7 @@ export class BryntumChecklistFilterCombo extends React.Component<BryntumChecklis
|
|
|
1185
1128
|
];
|
|
1186
1129
|
|
|
1187
1130
|
static propertyNames = [
|
|
1188
|
-
'anchorSize',
|
|
1189
1131
|
'content',
|
|
1190
|
-
'focusVisible',
|
|
1191
1132
|
'formula',
|
|
1192
1133
|
'html',
|
|
1193
1134
|
'input',
|