@syncfusion/ej2-multicolumn-combobox 26.1.35

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.
Files changed (141) hide show
  1. package/README.md +47 -0
  2. package/dist/ej2-multicolumn-combobox.umd.min.js +2 -0
  3. package/dist/ej2-multicolumn-combobox.umd.min.js.map +1 -0
  4. package/dist/es6/ej2-multicolumn-combobox.es2015.js +1612 -0
  5. package/dist/es6/ej2-multicolumn-combobox.es2015.js.map +1 -0
  6. package/dist/es6/ej2-multicolumn-combobox.es5.js +1663 -0
  7. package/dist/es6/ej2-multicolumn-combobox.es5.js.map +1 -0
  8. package/dist/global/ej2-multicolumn-combobox.min.js +2 -0
  9. package/dist/global/ej2-multicolumn-combobox.min.js.map +1 -0
  10. package/dist/global/index.d.ts +5 -0
  11. package/index.d.ts +4 -0
  12. package/index.js +4 -0
  13. package/license +10 -0
  14. package/multicolumn-combobox.d.ts +4 -0
  15. package/multicolumn-combobox.js +4 -0
  16. package/package.json +62 -0
  17. package/src/global.js +3 -0
  18. package/src/index.d.ts +1 -0
  19. package/src/index.js +3 -0
  20. package/src/multicolumn-combobox/index.d.ts +6 -0
  21. package/src/multicolumn-combobox/index.js +5 -0
  22. package/src/multicolumn-combobox/multi-column-combo-box-model.d.ts +527 -0
  23. package/src/multicolumn-combobox/multi-column-combo-box.d.ts +860 -0
  24. package/src/multicolumn-combobox/multi-column-combo-box.js +1666 -0
  25. package/styles/bootstrap-dark.css +331 -0
  26. package/styles/bootstrap-dark.scss +10 -0
  27. package/styles/bootstrap.css +331 -0
  28. package/styles/bootstrap.scss +10 -0
  29. package/styles/bootstrap4.css +395 -0
  30. package/styles/bootstrap4.scss +10 -0
  31. package/styles/bootstrap5-dark.css +399 -0
  32. package/styles/bootstrap5-dark.scss +10 -0
  33. package/styles/bootstrap5.css +399 -0
  34. package/styles/bootstrap5.scss +10 -0
  35. package/styles/fabric-dark.css +306 -0
  36. package/styles/fabric-dark.scss +10 -0
  37. package/styles/fabric.css +299 -0
  38. package/styles/fabric.scss +10 -0
  39. package/styles/fluent-dark.css +379 -0
  40. package/styles/fluent-dark.scss +10 -0
  41. package/styles/fluent.css +379 -0
  42. package/styles/fluent.scss +10 -0
  43. package/styles/fluent2.css +1408 -0
  44. package/styles/fluent2.scss +10 -0
  45. package/styles/highcontrast-light.css +317 -0
  46. package/styles/highcontrast-light.scss +10 -0
  47. package/styles/highcontrast.css +317 -0
  48. package/styles/highcontrast.scss +10 -0
  49. package/styles/material-dark.css +339 -0
  50. package/styles/material-dark.scss +10 -0
  51. package/styles/material.css +364 -0
  52. package/styles/material.scss +10 -0
  53. package/styles/material3-dark.css +431 -0
  54. package/styles/material3-dark.scss +12 -0
  55. package/styles/material3.css +487 -0
  56. package/styles/material3.scss +12 -0
  57. package/styles/multicolumn-combobox/_all.scss +2 -0
  58. package/styles/multicolumn-combobox/_bds-definition.scss +29 -0
  59. package/styles/multicolumn-combobox/_bootstrap-dark-definition.scss +29 -0
  60. package/styles/multicolumn-combobox/_bootstrap-definition.scss +29 -0
  61. package/styles/multicolumn-combobox/_bootstrap4-definition.scss +29 -0
  62. package/styles/multicolumn-combobox/_bootstrap5-dark-definition.scss +1 -0
  63. package/styles/multicolumn-combobox/_bootstrap5-definition.scss +29 -0
  64. package/styles/multicolumn-combobox/_bootstrap5.3-definition.scss +29 -0
  65. package/styles/multicolumn-combobox/_fabric-dark-definition.scss +29 -0
  66. package/styles/multicolumn-combobox/_fabric-definition.scss +29 -0
  67. package/styles/multicolumn-combobox/_fluent-dark-definition.scss +1 -0
  68. package/styles/multicolumn-combobox/_fluent-definition.scss +29 -0
  69. package/styles/multicolumn-combobox/_fluent2-definition.scss +29 -0
  70. package/styles/multicolumn-combobox/_fusionnew-definition.scss +29 -0
  71. package/styles/multicolumn-combobox/_highcontrast-definition.scss +29 -0
  72. package/styles/multicolumn-combobox/_highcontrast-light-definition.scss +29 -0
  73. package/styles/multicolumn-combobox/_layout.scss +130 -0
  74. package/styles/multicolumn-combobox/_material-dark-definition.scss +29 -0
  75. package/styles/multicolumn-combobox/_material-definition.scss +29 -0
  76. package/styles/multicolumn-combobox/_material3-dark-definition.scss +1 -0
  77. package/styles/multicolumn-combobox/_material3-definition.scss +29 -0
  78. package/styles/multicolumn-combobox/_tailwind-dark-definition.scss +1 -0
  79. package/styles/multicolumn-combobox/_tailwind-definition.scss +29 -0
  80. package/styles/multicolumn-combobox/_theme.scss +49 -0
  81. package/styles/multicolumn-combobox/bootstrap-dark.css +331 -0
  82. package/styles/multicolumn-combobox/bootstrap-dark.scss +10 -0
  83. package/styles/multicolumn-combobox/bootstrap.css +331 -0
  84. package/styles/multicolumn-combobox/bootstrap.scss +10 -0
  85. package/styles/multicolumn-combobox/bootstrap4.css +395 -0
  86. package/styles/multicolumn-combobox/bootstrap4.scss +10 -0
  87. package/styles/multicolumn-combobox/bootstrap5-dark.css +399 -0
  88. package/styles/multicolumn-combobox/bootstrap5-dark.scss +10 -0
  89. package/styles/multicolumn-combobox/bootstrap5.css +399 -0
  90. package/styles/multicolumn-combobox/bootstrap5.scss +10 -0
  91. package/styles/multicolumn-combobox/fabric-dark.css +306 -0
  92. package/styles/multicolumn-combobox/fabric-dark.scss +10 -0
  93. package/styles/multicolumn-combobox/fabric.css +299 -0
  94. package/styles/multicolumn-combobox/fabric.scss +10 -0
  95. package/styles/multicolumn-combobox/fluent-dark.css +379 -0
  96. package/styles/multicolumn-combobox/fluent-dark.scss +10 -0
  97. package/styles/multicolumn-combobox/fluent.css +379 -0
  98. package/styles/multicolumn-combobox/fluent.scss +10 -0
  99. package/styles/multicolumn-combobox/fluent2.css +1408 -0
  100. package/styles/multicolumn-combobox/fluent2.scss +10 -0
  101. package/styles/multicolumn-combobox/highcontrast-light.css +317 -0
  102. package/styles/multicolumn-combobox/highcontrast-light.scss +10 -0
  103. package/styles/multicolumn-combobox/highcontrast.css +317 -0
  104. package/styles/multicolumn-combobox/highcontrast.scss +10 -0
  105. package/styles/multicolumn-combobox/icons/_bds.scss +6 -0
  106. package/styles/multicolumn-combobox/icons/_bootstrap-dark.scss +6 -0
  107. package/styles/multicolumn-combobox/icons/_bootstrap.scss +6 -0
  108. package/styles/multicolumn-combobox/icons/_bootstrap4.scss +6 -0
  109. package/styles/multicolumn-combobox/icons/_bootstrap5-dark.scss +1 -0
  110. package/styles/multicolumn-combobox/icons/_bootstrap5.3.scss +6 -0
  111. package/styles/multicolumn-combobox/icons/_bootstrap5.scss +6 -0
  112. package/styles/multicolumn-combobox/icons/_fabric-dark.scss +6 -0
  113. package/styles/multicolumn-combobox/icons/_fabric.scss +6 -0
  114. package/styles/multicolumn-combobox/icons/_fluent-dark.scss +1 -0
  115. package/styles/multicolumn-combobox/icons/_fluent.scss +6 -0
  116. package/styles/multicolumn-combobox/icons/_fluent2.scss +6 -0
  117. package/styles/multicolumn-combobox/icons/_fusionnew.scss +6 -0
  118. package/styles/multicolumn-combobox/icons/_highcontrast-light.scss +6 -0
  119. package/styles/multicolumn-combobox/icons/_highcontrast.scss +6 -0
  120. package/styles/multicolumn-combobox/icons/_material-dark.scss +6 -0
  121. package/styles/multicolumn-combobox/icons/_material.scss +6 -0
  122. package/styles/multicolumn-combobox/icons/_material3-dark.scss +1 -0
  123. package/styles/multicolumn-combobox/icons/_material3.scss +6 -0
  124. package/styles/multicolumn-combobox/icons/_tailwind-dark.scss +1 -0
  125. package/styles/multicolumn-combobox/icons/_tailwind.scss +6 -0
  126. package/styles/multicolumn-combobox/material-dark.css +339 -0
  127. package/styles/multicolumn-combobox/material-dark.scss +10 -0
  128. package/styles/multicolumn-combobox/material.css +364 -0
  129. package/styles/multicolumn-combobox/material.scss +10 -0
  130. package/styles/multicolumn-combobox/material3-dark.css +431 -0
  131. package/styles/multicolumn-combobox/material3-dark.scss +11 -0
  132. package/styles/multicolumn-combobox/material3.css +487 -0
  133. package/styles/multicolumn-combobox/material3.scss +11 -0
  134. package/styles/multicolumn-combobox/tailwind-dark.css +363 -0
  135. package/styles/multicolumn-combobox/tailwind-dark.scss +10 -0
  136. package/styles/multicolumn-combobox/tailwind.css +363 -0
  137. package/styles/multicolumn-combobox/tailwind.scss +10 -0
  138. package/styles/tailwind-dark.css +363 -0
  139. package/styles/tailwind-dark.scss +10 -0
  140. package/styles/tailwind.css +363 -0
  141. package/styles/tailwind.scss +10 -0
@@ -0,0 +1,527 @@
1
+ import { Component, EventHandler, INotifyPropertyChanged, Property, NotifyPropertyChanges, closest, attributes, append, compile, detach, KeyboardEvents } from '@syncfusion/ej2-base';import { ChildProperty, prepend, Collection, getUniqueID, Complex, isNullOrUndefined as isNOU, select, L10n, Browser } from '@syncfusion/ej2-base';import { formatUnit, addClass, removeClass, NumberFormatOptions, DateFormatOptions, Event, EmitType, AnimationModel, Animation, KeyboardEventArgs } from '@syncfusion/ej2-base';import { Input, InputObject } from '@syncfusion/ej2-inputs';import { DataManager, Query, Group } from '@syncfusion/ej2-data';import { Popup } from '@syncfusion/ej2-popups';import { Grid, FailureEventArgs, VirtualScroll, Group as GridGroup, Edit, Sort, GridColumnModel } from '@syncfusion/ej2-grids';
2
+ import {TextAlign,GridLine,DataResult,FilterType,FloatLabelType,SortOrder,SortType,PopupEventArgs,FilteringEventArgs,SelectEventArgs,ChangeEventArgs} from "./multi-column-combo-box";
3
+ import {ComponentModel} from '@syncfusion/ej2-base';
4
+
5
+ /**
6
+ * Interface for a class MultiColumnGrid
7
+ */
8
+ export interface MultiColumnGridModel {
9
+
10
+ }
11
+
12
+ /**
13
+ * Interface for a class FieldSettings
14
+ */
15
+ export interface FieldSettingsModel {
16
+
17
+ /**
18
+ * Specifies the display text of each list item.
19
+ *
20
+ * @default null
21
+ */
22
+ text?: string;
23
+
24
+ /**
25
+ * Specifies the hidden data value mapped to each list item that should contain a unique value.
26
+ *
27
+ * @default null
28
+ */
29
+ value?: string;
30
+
31
+ /**
32
+ * Specifies the category under which the list item has to be grouped.
33
+ *
34
+ * @default null
35
+ */
36
+ groupBy?: string;
37
+
38
+ }
39
+
40
+ /**
41
+ * Interface for a class Column
42
+ */
43
+ export interface ColumnModel {
44
+
45
+ /**
46
+ * Defines the name of the field whose data will be displayed in the column.
47
+ *
48
+ * @default ''
49
+ */
50
+ field?: string;
51
+
52
+ /**
53
+ * Defines the header text of column which is used to display in column header.
54
+ * If headerText is not defined, then field name value will be assigned to header text.
55
+ *
56
+ * @default ''
57
+ */
58
+ header?: string;
59
+
60
+ /**
61
+ * Defines the width of the column in pixels or percentage.
62
+ *
63
+ * @default ''
64
+ */
65
+ width?: string | number;
66
+
67
+ /**
68
+ * Defines the alignment of the column in both header and content cells.
69
+ *
70
+ * @default Left
71
+ */
72
+ textAlign?: TextAlign;
73
+
74
+ /**
75
+ * It is used to change display value with the given format and does not affect the original data.
76
+ * Gets the format from the user which can be standard or custom `number` and `date` formats.
77
+ *
78
+ * @default null
79
+ * @aspType string
80
+ */
81
+ format?: string | NumberFormatOptions | DateFormatOptions;
82
+
83
+ /**
84
+ * If `displayAsCheckBox` is set to true, it displays the column value as a check box instead of Boolean value.
85
+ *
86
+ * @default false
87
+ */
88
+ displayAsCheckBox?: boolean;
89
+
90
+ /**
91
+ * Defines the column template that renders customized element in each cell of the column.
92
+ * It accepts either template or HTML element ID.
93
+ *
94
+ * @default null
95
+ * @angularType string | object
96
+ * @reactType string | function | JSX.Element
97
+ * @vueType string | function
98
+ * @aspType string
99
+ */
100
+ template?: string | Function;
101
+
102
+ /**
103
+ * Defines the column template as string or HTML element ID which is used to add customized element in the column header.
104
+ *
105
+ * @default null
106
+ * @angularType string | object
107
+ * @reactType string | function | JSX.Element
108
+ * @vueType string | function
109
+ * @aspType string
110
+ */
111
+ headerTemplate?: string | Function;
112
+
113
+ /**
114
+ * The CSS styles and attributes of the content cells of a particular column can be customized.
115
+ *
116
+ * @default null
117
+ */
118
+ customAttributes?: { [x: string]: Object };
119
+
120
+ }
121
+
122
+ /**
123
+ * Interface for a class GridSettings
124
+ */
125
+ export interface GridSettingsModel {
126
+
127
+ /**
128
+ * If `enableAltRow` is set to true, the grid will render with `e-altrow` CSS class to the alternative row elements.
129
+ *
130
+ * @default false
131
+ */
132
+ enableAltRow?: boolean;
133
+
134
+ /**
135
+ * Defines the height of rows in the popup content.
136
+ *
137
+ * @default null
138
+ */
139
+ rowHeight?: number;
140
+
141
+ /**
142
+ * Defines the mode of grid lines. The available modes are,
143
+ * * `Both`: Displays both horizontal and vertical grid lines.
144
+ * * `None`: No grid lines are displayed.
145
+ * * `Horizontal`: Displays the horizontal grid lines only.
146
+ * * `Vertical`: Displays the vertical grid lines only.
147
+ * * `Default`: Displays grid lines based on the theme.
148
+ *
149
+ * @default Default
150
+ */
151
+ gridLines?: GridLine;
152
+
153
+ }
154
+
155
+ /**
156
+ * Interface for a class MultiColumnComboBox
157
+ */
158
+ export interface MultiColumnComboBoxModel extends ComponentModel{
159
+
160
+ /**
161
+ * Accepts the list items either through local or remote service and binds it to the component.
162
+ * It can be an array of JSON Objects or an instance of `DataManager`.
163
+ *
164
+ * {% codeBlock src='multicolumn-combobox/value/index.md' %}{% endcodeBlock %}
165
+ *
166
+ * @default []
167
+ * @isGenericType true
168
+ */
169
+ dataSource?: Object | DataManager | DataResult;
170
+
171
+ /**
172
+ * Gets or sets the display text of the selected item.
173
+ *
174
+ * @default null
175
+ */
176
+ text?: string;
177
+
178
+ /**
179
+ * Gets or sets the value of the selected item.
180
+ *
181
+ * {% codeBlock src='multicolumn-combobox/value/index.md' %}{% endcodeBlock %}
182
+ *
183
+ * @default null
184
+ */
185
+ value?: string;
186
+
187
+ /**
188
+ * Gets or sets the index of the selected item in the component.
189
+ *
190
+ * @default null
191
+ */
192
+ index?: number | null;
193
+
194
+ /**
195
+ * Specifies the width of the component. By default, the component width sets based on the width of its parent container.
196
+ *
197
+ * @default '100%'
198
+ * @aspType string
199
+ */
200
+ width?: string | number;
201
+
202
+ /**
203
+ * Specifies the height of the popup list.
204
+ *
205
+ * @default '300px'
206
+ * @aspType string
207
+ */
208
+ popupHeight?: string | number;
209
+
210
+ /**
211
+ * Specifies the width of the popup list. By default, the popup width sets based on the width of the component.
212
+ *
213
+ * @default '100%'
214
+ * @aspType string
215
+ */
216
+ popupWidth?: string | number;
217
+
218
+ /**
219
+ * Specifies a short hint that describes the expected value of the multicolumn combobox component.
220
+ *
221
+ * @default null
222
+ */
223
+ placeholder?: string;
224
+
225
+ /**
226
+ * Specifies the filter action retrieves matched items through the filtering event based on the characters typed in the search TextBox.
227
+ * If no match is found, the value of the noRecordsTemplate property will be displayed.
228
+ *
229
+ * {% codeBlock src='multicolumn-combobox/allowFiltering/index.md' %}{% endcodeBlock %}
230
+ *
231
+ * @default true
232
+ */
233
+ allowFiltering?: boolean;
234
+
235
+ /**
236
+ * Specifies whether sorting is allowed for the columns in the dropdown list.
237
+ *
238
+ * @default true
239
+ */
240
+ allowSorting?: boolean;
241
+
242
+ /**
243
+ * Specifies whether to show or hide the clear icon in textbox.
244
+ * When the clear button is clicked, `value`, `text` properties will be reset to null.
245
+ *
246
+ * @default false
247
+ */
248
+ showClearButton?: boolean;
249
+
250
+ /**
251
+ * Sets CSS classes to the root element of the component that allows customization of appearance.
252
+ *
253
+ * @default ''
254
+ */
255
+ cssClass?: string;
256
+
257
+ /**
258
+ * The `fields` property maps the columns of the data table and binds the data to the component.
259
+ * * text - Maps the text column from data table for each list item.
260
+ * * value - Maps the value column from data table for each list item.
261
+ * * groupBy - Group the list items with it's related items by mapping groupBy field.
262
+ *
263
+ * {% codeBlock src='multicolumn-combobox/fields/index.md' %}{% endcodeBlock %}
264
+ *
265
+ * @default {text: null, value: null, groupBy: null}
266
+ */
267
+ fields?: FieldSettingsModel;
268
+
269
+ /**
270
+ * Specifies the number of columns and its respective fields to be displayed in the dropdown popup.
271
+ *
272
+ * {% codeBlock src='multicolumn-combobox/fields/index.md' %}{% endcodeBlock %}
273
+ *
274
+ * @default []
275
+ */
276
+ columns?: ColumnModel[];
277
+
278
+ /**
279
+ * Specifies the configuration of the columns in the popup content.
280
+ *
281
+ * {% codeBlock src='multicolumn-combobox/gridSettings/index.md' %}{% endcodeBlock %}
282
+ *
283
+ * @default {rowHeight: null, gridLines: Default, enableAltRow: false}
284
+ */
285
+ gridSettings?: GridSettingsModel;
286
+
287
+ /**
288
+ * Determines on which filter type, the component needs to be considered on search action.
289
+ * The `FilterType` and its supported data types are
290
+ *
291
+ * <table>
292
+ * <tr>
293
+ * <td colSpan=1 rowSpan=1>
294
+ * FilterType<br/></td><td colSpan=1 rowSpan=1>
295
+ * Description<br/></td><td colSpan=1 rowSpan=1>
296
+ * Supported Types<br/></td></tr>
297
+ * <tr>
298
+ * <td colSpan=1 rowSpan=1>
299
+ * StartsWith<br/></td><td colSpan=1 rowSpan=1>
300
+ * Checks whether a value begins with the specified value.<br/></td><td colSpan=1 rowSpan=1>
301
+ * String<br/></td></tr>
302
+ * <tr>
303
+ * <td colSpan=1 rowSpan=1>
304
+ * EndsWith<br/></td><td colSpan=1 rowSpan=1>
305
+ * Checks whether a value ends with specified value.<br/><br/></td><td colSpan=1 rowSpan=1>
306
+ * <br/>String<br/></td></tr>
307
+ * <tr>
308
+ * <td colSpan=1 rowSpan=1>
309
+ * Contains<br/></td><td colSpan=1 rowSpan=1>
310
+ * Checks whether a value contains with specified value.<br/><br/></td><td colSpan=1 rowSpan=1>
311
+ * <br/>String<br/></td></tr>
312
+ * </table>
313
+ *
314
+ * The default value set to `StartsWith`, all the suggestion items which contain typed characters to listed in the suggestion popup.
315
+ *
316
+ * {% codeBlock src='multicolumn-combobox/allowFiltering/index.md' %}{% endcodeBlock %}
317
+ *
318
+ * @isenumeration true
319
+ * @default FilterType.StartsWith
320
+ * @asptype FilterType
321
+ */
322
+ filterType?: FilterType | string;
323
+
324
+ /**
325
+ * Specifies whether to display the floating label above the input element.
326
+ * Possible values are:
327
+ * * Never - The label will never float in the input when the placeholder is available.
328
+ * * Always - The floating label will always float above the input.
329
+ * * Auto - The floating label will float above the input after focusing or entering a value in the input.
330
+ *
331
+ * {% codeBlock src='multicolumn-combobox/floatLabelType/index.md' %}{% endcodeBlock %}
332
+ *
333
+ * @default Never
334
+ */
335
+ floatLabelType?: FloatLabelType;
336
+
337
+ /**
338
+ * Specifies the sortOrder to sort the data source.
339
+ * The available type of sort orders are,
340
+ * * `None` - The datasource is not sorting. Default value is None.
341
+ * * `Ascending` - The datasource is sorting with ascending order.
342
+ * * `Descending` - The data source is sorting with descending order.
343
+ *
344
+ * @isenumeration true
345
+ * @default SortOrder.None
346
+ * @asptype SortOrder
347
+ */
348
+ sortOrder?: SortOrder | string;
349
+
350
+ /**
351
+ * Specifies the type of sorting to be applied for the columns.
352
+ * * `OneColumn` - Allow sorting only one column.
353
+ * * `MultipleColumns` - Allow sorting multiple columns.
354
+ *
355
+ * @isenumeration true
356
+ * @default SortType.OneColumn
357
+ * @asptype SortType
358
+ */
359
+ sortType?: SortType | string;
360
+
361
+ /**
362
+ * Defines whether to enable virtual scrolling in the component.
363
+ *
364
+ * @default false
365
+ */
366
+ enableVirtualization?: boolean;
367
+
368
+ /**
369
+ * Specifies a value that indicates whether the component is disabled or not.
370
+ *
371
+ * @default false
372
+ */
373
+ disabled?: boolean;
374
+
375
+ /**
376
+ * Specifies the user interactions on the component are disabled.
377
+ *
378
+ * @default false
379
+ */
380
+ readonly?: boolean;
381
+
382
+ /**
383
+ * Specifies the component’s state between page reloads. If enabled, the list of states for the value will be persisted.
384
+ *
385
+ * @default false
386
+ */
387
+ enablePersistence?: boolean;
388
+
389
+ /**
390
+ * Accepts the external Query that execute along with data processing.
391
+ *
392
+ * {% codeBlock src='multicolumn-combobox/query/index.md' %}{% endcodeBlock %}
393
+ *
394
+ * @default null
395
+ */
396
+ query?: Query;
397
+
398
+ /**
399
+ * Accepts the template design and assigns it to each items present in the popup.
400
+ *
401
+ * {% codeBlock src='multicolumn-combobox/itemTemplate/index.md' %}{% endcodeBlock %}
402
+ *
403
+ * @default null
404
+ * @angularType string | object
405
+ * @reactType string | function | JSX.Element
406
+ * @vueType string | function
407
+ * @aspType string
408
+ */
409
+ itemTemplate?: string | Function;
410
+
411
+ /**
412
+ * Accepts the template design and assigns it to the footer container of the popup.
413
+ *
414
+ * @default null
415
+ * @angularType string | object
416
+ * @reactType string | function | JSX.Element
417
+ * @vueType string | function
418
+ * @aspType string
419
+ */
420
+ footerTemplate?: string | Function;
421
+
422
+ /**
423
+ * Accepts the template design and assigns it to the group headers present in the popup list.
424
+ *
425
+ * @default null
426
+ * @angularType string | object
427
+ * @reactType string | function | JSX.Element
428
+ * @vueType string | function
429
+ * @aspType string
430
+ */
431
+ groupTemplate?: string | Function;
432
+
433
+ /**
434
+ * Accepts the template and assigns it to the popup content when the data fetch request from the remote server fails.
435
+ *
436
+ * @default 'Request Failed'
437
+ * @angularType string | object
438
+ * @reactType string | function | JSX.Element
439
+ * @vueType string | function
440
+ * @aspType string
441
+ */
442
+ actionFailureTemplate?: string | Function;
443
+
444
+ /**
445
+ * Accepts the template design and assigns it to popup list of component when no data is available on the component.
446
+ *
447
+ * @default 'No records found'
448
+ * @angularType string | object
449
+ * @reactType string | function | JSX.Element
450
+ * @vueType string | function
451
+ * @aspType string
452
+ */
453
+ noRecordsTemplate?: string | Function;
454
+
455
+ /**
456
+ * Allows additional HTML attributes such as title, name, etc., and accepts n number of attributes in a key-value pair format.
457
+ *
458
+ * {% codeBlock src='multicolumn-combobox/htmlAttributes/index.md' %}{% endcodeBlock %}
459
+ *
460
+ * @default {}
461
+ */
462
+ htmlAttributes?: { [key: string]: string; };
463
+
464
+ /**
465
+ * Event callback that is raised after rendering the control.
466
+ *
467
+ * @event created
468
+ */
469
+ created?: EmitType<Event>;
470
+
471
+ /**
472
+ * Triggers when the popup opens.
473
+ *
474
+ * @event open
475
+ */
476
+ open?: EmitType<PopupEventArgs>;
477
+
478
+ /**
479
+ * Triggers when the popup is closed.
480
+ *
481
+ * @event close
482
+ */
483
+ close?: EmitType<PopupEventArgs>;
484
+
485
+ /**
486
+ * Triggers when the data fetch request from the remote server fails.
487
+ *
488
+ * @event actionFailure
489
+ */
490
+ actionFailure?: EmitType<Object>;
491
+
492
+ /**
493
+ * Triggers before fetching data from the remote server.
494
+ *
495
+ * @event actionBegin
496
+ */
497
+ actionBegin?: EmitType<Object>;
498
+
499
+ /**
500
+ * Triggers after data is fetched successfully from the remote server.
501
+ *
502
+ * @event actionComplete
503
+ */
504
+ actionComplete?: EmitType<Object>;
505
+
506
+ /**
507
+ * Triggers on typing a character in the component.
508
+ *
509
+ * @event filtering
510
+ */
511
+ filtering?: EmitType<FilteringEventArgs>;
512
+
513
+ /**
514
+ * Triggers when an item in the popup is selected by the user either with mouse/tap or with keyboard navigation.
515
+ *
516
+ * @event select
517
+ */
518
+ select?: EmitType<SelectEventArgs>;
519
+
520
+ /**
521
+ * Triggers when an item in a popup is selected or when the model value is changed by the user.
522
+ *
523
+ * @event change
524
+ */
525
+ change?: EmitType<ChangeEventArgs>;
526
+
527
+ }