@syncfusion/ej2-dropdowns 25.2.7 → 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.
- package/.eslintrc.json +3 -2
- package/dist/ej2-dropdowns.min.js +2 -2
- package/dist/ej2-dropdowns.umd.min.js +2 -2
- package/dist/ej2-dropdowns.umd.min.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es2015.js +505 -224
- package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es5.js +498 -216
- package/dist/es6/ej2-dropdowns.es5.js.map +1 -1
- package/dist/global/ej2-dropdowns.min.js +2 -2
- package/dist/global/ej2-dropdowns.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +14 -13
- package/src/auto-complete/auto-complete.js +1 -1
- package/src/combo-box/combo-box.js +15 -0
- package/src/common/interface.js +0 -1
- package/src/common/virtual-scroll.js +1 -0
- package/src/drop-down-base/drop-down-base-model.d.ts +8 -1
- package/src/drop-down-base/drop-down-base.d.ts +28 -2
- package/src/drop-down-base/drop-down-base.js +64 -9
- package/src/drop-down-list/drop-down-list.d.ts +15 -2
- package/src/drop-down-list/drop-down-list.js +129 -13
- package/src/drop-down-tree/drop-down-tree-model.d.ts +15 -15
- package/src/drop-down-tree/drop-down-tree.d.ts +17 -13
- package/src/drop-down-tree/drop-down-tree.js +52 -38
- package/src/list-box/list-box.js +30 -9
- package/src/mention/mention.js +23 -8
- package/src/multi-select/interface.js +0 -1
- package/src/multi-select/multi-select.d.ts +15 -0
- package/src/multi-select/multi-select.js +135 -12
- package/styles/auto-complete/_bootstrap5.3-definition.scss +2 -0
- package/styles/auto-complete/_fluent2-definition.scss +2 -0
- package/styles/auto-complete/bootstrap-dark.css +5 -2
- package/styles/auto-complete/bootstrap.css +5 -2
- package/styles/auto-complete/bootstrap4.css +6 -2
- package/styles/auto-complete/bootstrap5-dark.css +6 -2
- package/styles/auto-complete/bootstrap5.css +6 -2
- package/styles/auto-complete/fabric-dark.css +3 -1
- package/styles/auto-complete/fabric.css +3 -1
- package/styles/auto-complete/fluent-dark.css +6 -2
- package/styles/auto-complete/fluent.css +6 -2
- package/styles/auto-complete/fluent2.css +1140 -0
- package/styles/auto-complete/fluent2.scss +4 -0
- package/styles/auto-complete/highcontrast-light.css +3 -1
- package/styles/auto-complete/highcontrast.css +3 -1
- package/styles/auto-complete/material-dark.css +16 -5
- package/styles/auto-complete/material.css +16 -5
- package/styles/auto-complete/material3-dark.css +17 -6
- package/styles/auto-complete/material3.css +17 -6
- package/styles/auto-complete/tailwind-dark.css +16 -5
- package/styles/auto-complete/tailwind.css +16 -5
- package/styles/bootstrap-dark.css +196 -228
- package/styles/bootstrap-dark.scss +28 -8
- package/styles/bootstrap.css +196 -228
- package/styles/bootstrap.scss +28 -8
- package/styles/bootstrap4.css +199 -229
- package/styles/bootstrap4.scss +28 -8
- package/styles/bootstrap5-dark.css +196 -221
- package/styles/bootstrap5-dark.scss +28 -8
- package/styles/bootstrap5.css +196 -221
- package/styles/bootstrap5.scss +28 -8
- package/styles/combo-box/_bootstrap5.3-definition.scss +2 -0
- package/styles/combo-box/_fluent2-definition.scss +2 -0
- package/styles/combo-box/bootstrap-dark.css +5 -2
- package/styles/combo-box/bootstrap.css +5 -2
- package/styles/combo-box/bootstrap4.css +6 -2
- package/styles/combo-box/bootstrap5-dark.css +6 -2
- package/styles/combo-box/bootstrap5.css +6 -2
- package/styles/combo-box/fabric-dark.css +3 -1
- package/styles/combo-box/fabric.css +3 -1
- package/styles/combo-box/fluent-dark.css +6 -2
- package/styles/combo-box/fluent.css +6 -2
- package/styles/combo-box/fluent2.css +1140 -0
- package/styles/combo-box/fluent2.scss +4 -0
- package/styles/combo-box/highcontrast-light.css +3 -1
- package/styles/combo-box/highcontrast.css +3 -1
- package/styles/combo-box/material-dark.css +16 -5
- package/styles/combo-box/material.css +16 -5
- package/styles/combo-box/material3-dark.css +17 -6
- package/styles/combo-box/material3.css +17 -6
- package/styles/combo-box/tailwind-dark.css +16 -5
- package/styles/combo-box/tailwind.css +16 -5
- package/styles/drop-down-base/_bds-definition.scss +2 -2
- package/styles/drop-down-base/_bootstrap5.3-definition.scss +117 -0
- package/styles/drop-down-base/_fluent2-definition.scss +134 -0
- package/styles/drop-down-base/_layout.scss +12 -2
- package/styles/drop-down-base/_material3-definition.scss +0 -11
- package/styles/drop-down-base/_theme.scss +2 -11
- package/styles/drop-down-base/bootstrap-dark.css +2 -1
- package/styles/drop-down-base/bootstrap.css +2 -1
- package/styles/drop-down-base/bootstrap4.css +2 -1
- package/styles/drop-down-base/bootstrap5-dark.css +2 -1
- package/styles/drop-down-base/bootstrap5.css +2 -1
- package/styles/drop-down-base/fabric-dark.css +2 -1
- package/styles/drop-down-base/fabric.css +2 -1
- package/styles/drop-down-base/fluent-dark.css +2 -1
- package/styles/drop-down-base/fluent.css +2 -1
- package/styles/drop-down-base/fluent2.css +1447 -0
- package/styles/drop-down-base/fluent2.scss +3 -0
- package/styles/drop-down-base/highcontrast-light.css +2 -1
- package/styles/drop-down-base/highcontrast.css +2 -1
- package/styles/drop-down-base/material-dark.css +2 -1
- package/styles/drop-down-base/material.css +2 -1
- package/styles/drop-down-base/material3-dark.css +9 -2
- package/styles/drop-down-base/material3.css +9 -2
- package/styles/drop-down-base/tailwind-dark.css +2 -1
- package/styles/drop-down-base/tailwind.css +2 -1
- package/styles/drop-down-list/_bootstrap5.3-definition.scss +201 -0
- package/styles/drop-down-list/_fluent2-definition.scss +134 -0
- package/styles/drop-down-list/_layout.scss +5 -3
- package/styles/drop-down-list/_material3-definition.scss +0 -8
- package/styles/drop-down-list/bootstrap-dark.css +38 -3
- package/styles/drop-down-list/bootstrap.css +38 -3
- package/styles/drop-down-list/bootstrap4.css +39 -3
- package/styles/drop-down-list/bootstrap5-dark.css +39 -3
- package/styles/drop-down-list/bootstrap5.css +39 -3
- package/styles/drop-down-list/fabric-dark.css +36 -2
- package/styles/drop-down-list/fabric.css +36 -2
- package/styles/drop-down-list/fluent-dark.css +39 -3
- package/styles/drop-down-list/fluent.css +39 -3
- package/styles/drop-down-list/fluent2.css +1684 -0
- package/styles/drop-down-list/fluent2.scss +9 -0
- package/styles/drop-down-list/highcontrast-light.css +36 -2
- package/styles/drop-down-list/highcontrast.css +36 -2
- package/styles/drop-down-list/icons/_bootstrap5.3.scss +14 -0
- package/styles/drop-down-list/icons/_fluent2.scss +14 -0
- package/styles/drop-down-list/material-dark.css +58 -7
- package/styles/drop-down-list/material.css +72 -9
- package/styles/drop-down-list/material3-dark.css +74 -10
- package/styles/drop-down-list/material3.css +74 -10
- package/styles/drop-down-list/tailwind-dark.css +49 -6
- package/styles/drop-down-list/tailwind.css +49 -6
- package/styles/drop-down-tree/_bds-definition.scss +5 -0
- package/styles/drop-down-tree/_bootstrap4-definition.scss +1 -0
- package/styles/drop-down-tree/_bootstrap5-definition.scss +5 -0
- package/styles/drop-down-tree/_bootstrap5.3-definition.scss +66 -0
- package/styles/drop-down-tree/_fluent-definition.scss +4 -0
- package/styles/drop-down-tree/_fluent2-definition.scss +75 -0
- package/styles/drop-down-tree/_layout.scss +289 -327
- package/styles/drop-down-tree/_material3-definition.scss +3 -5
- package/styles/drop-down-tree/_tailwind-definition.scss +7 -2
- package/styles/drop-down-tree/_theme.scss +24 -41
- package/styles/drop-down-tree/bootstrap-dark.css +63 -29
- package/styles/drop-down-tree/bootstrap.css +63 -29
- package/styles/drop-down-tree/bootstrap4.css +64 -30
- package/styles/drop-down-tree/bootstrap5-dark.css +63 -27
- package/styles/drop-down-tree/bootstrap5.css +63 -27
- package/styles/drop-down-tree/fabric-dark.css +63 -29
- package/styles/drop-down-tree/fabric.css +63 -29
- package/styles/drop-down-tree/fluent-dark.css +71 -35
- package/styles/drop-down-tree/fluent.css +71 -35
- package/styles/drop-down-tree/fluent2.css +1732 -0
- package/styles/drop-down-tree/fluent2.scss +9 -0
- package/styles/drop-down-tree/highcontrast-light.css +63 -29
- package/styles/drop-down-tree/highcontrast.css +63 -23
- package/styles/drop-down-tree/icons/_bootstrap5.3.scss +11 -0
- package/styles/drop-down-tree/icons/_fluent2.scss +14 -0
- package/styles/drop-down-tree/material-dark.css +80 -43
- package/styles/drop-down-tree/material.css +97 -51
- package/styles/drop-down-tree/material3-dark.css +85 -32
- package/styles/drop-down-tree/material3.css +85 -32
- package/styles/drop-down-tree/tailwind-dark.css +72 -28
- package/styles/drop-down-tree/tailwind.css +72 -28
- package/styles/fabric-dark.css +194 -227
- package/styles/fabric-dark.scss +28 -8
- package/styles/fabric.css +194 -227
- package/styles/fabric.scss +28 -8
- package/styles/fluent-dark.css +206 -236
- package/styles/fluent-dark.scss +28 -8
- package/styles/fluent.css +206 -236
- package/styles/fluent.scss +28 -8
- package/styles/fluent2.css +4771 -0
- package/styles/fluent2.scss +28 -0
- package/styles/highcontrast-light.css +197 -227
- package/styles/highcontrast-light.scss +28 -8
- package/styles/highcontrast.css +197 -221
- package/styles/highcontrast.scss +28 -8
- package/styles/list-box/_bootstrap-dark-definition.scss +0 -2
- package/styles/list-box/_bootstrap5.3-definition.scss +120 -0
- package/styles/list-box/_fabric-dark-definition.scss +0 -2
- package/styles/list-box/_fluent2-definition.scss +121 -0
- package/styles/list-box/_highcontrast-light-definition.scss +0 -2
- package/styles/list-box/_layout.scss +65 -44
- package/styles/list-box/_material-dark-definition.scss +0 -2
- package/styles/list-box/_tailwind-definition.scss +1 -1
- package/styles/list-box/_theme.scss +36 -65
- package/styles/list-box/bootstrap-dark.css +72 -112
- package/styles/list-box/bootstrap.css +72 -112
- package/styles/list-box/bootstrap4.css +72 -112
- package/styles/list-box/bootstrap5-dark.css +72 -106
- package/styles/list-box/bootstrap5.css +72 -106
- package/styles/list-box/fabric-dark.css +72 -112
- package/styles/list-box/fabric.css +72 -112
- package/styles/list-box/fluent-dark.css +72 -112
- package/styles/list-box/fluent.css +72 -112
- package/styles/list-box/fluent2.css +2029 -0
- package/styles/list-box/fluent2.scss +5 -0
- package/styles/list-box/highcontrast-light.css +72 -112
- package/styles/list-box/highcontrast.css +72 -112
- package/styles/list-box/icons/_bootstrap5.3.scss +25 -0
- package/styles/list-box/icons/_fluent2.scss +25 -0
- package/styles/list-box/material-dark.css +72 -112
- package/styles/list-box/material.css +72 -112
- package/styles/list-box/material3-dark.css +73 -113
- package/styles/list-box/material3.css +73 -113
- package/styles/list-box/tailwind-dark.css +74 -114
- package/styles/list-box/tailwind.css +74 -114
- package/styles/material-dark.css +236 -260
- package/styles/material-dark.scss +28 -8
- package/styles/material.css +253 -284
- package/styles/material.scss +28 -8
- package/styles/material3-dark.css +253 -266
- package/styles/material3-dark.scss +28 -8
- package/styles/material3.css +253 -266
- package/styles/material3.scss +28 -8
- package/styles/mention/_bootstrap5.3-definition.scss +1 -0
- package/styles/mention/_fluent2-definition.scss +1 -0
- package/styles/mention/bootstrap-dark.css +24 -0
- package/styles/mention/bootstrap.css +24 -0
- package/styles/mention/bootstrap4.css +24 -0
- package/styles/mention/bootstrap5-dark.css +24 -0
- package/styles/mention/bootstrap5.css +24 -0
- package/styles/mention/fabric-dark.css +24 -0
- package/styles/mention/fabric.css +24 -0
- package/styles/mention/fluent-dark.css +24 -0
- package/styles/mention/fluent.css +24 -0
- package/styles/mention/fluent2.css +1130 -0
- package/styles/mention/fluent2.scss +6 -0
- package/styles/mention/highcontrast-light.css +24 -0
- package/styles/mention/highcontrast.css +24 -0
- package/styles/mention/material-dark.css +24 -0
- package/styles/mention/material.css +24 -0
- package/styles/mention/material3-dark.css +25 -1
- package/styles/mention/material3.css +25 -1
- package/styles/mention/tailwind-dark.css +24 -0
- package/styles/mention/tailwind.css +24 -0
- package/styles/multi-select/_bootstrap5.3-definition.scss +230 -0
- package/styles/multi-select/_fluent2-definition.scss +236 -0
- package/styles/multi-select/_layout.scss +32 -38
- package/styles/multi-select/_material3-definition.scss +0 -15
- package/styles/multi-select/_theme.scss +0 -4
- package/styles/multi-select/bootstrap-dark.css +67 -28
- package/styles/multi-select/bootstrap.css +67 -28
- package/styles/multi-select/bootstrap4.css +70 -29
- package/styles/multi-select/bootstrap5-dark.css +67 -28
- package/styles/multi-select/bootstrap5.css +67 -28
- package/styles/multi-select/fabric-dark.css +67 -28
- package/styles/multi-select/fabric.css +67 -28
- package/styles/multi-select/fluent-dark.css +69 -29
- package/styles/multi-select/fluent.css +69 -29
- package/styles/multi-select/fluent2.css +2663 -0
- package/styles/multi-select/fluent2.scss +9 -0
- package/styles/multi-select/highcontrast-light.css +70 -28
- package/styles/multi-select/highcontrast.css +70 -28
- package/styles/multi-select/icons/_bootstrap5.3.scss +26 -0
- package/styles/multi-select/icons/_fluent2.scss +692 -0
- package/styles/multi-select/material-dark.css +88 -32
- package/styles/multi-select/material.css +102 -34
- package/styles/multi-select/material3-dark.css +109 -35
- package/styles/multi-select/material3.css +109 -35
- package/styles/multi-select/tailwind-dark.css +67 -28
- package/styles/multi-select/tailwind.css +67 -28
- package/styles/tailwind-dark.css +217 -233
- package/styles/tailwind-dark.scss +28 -8
- package/styles/tailwind.css +217 -233
- package/styles/tailwind.scss +28 -8
- package/CHANGELOG.md +0 -2200
package/CHANGELOG.md
DELETED
|
@@ -1,2200 +0,0 @@
|
|
|
1
|
-
# Changelog
|
|
2
|
-
|
|
3
|
-
## [Unreleased]
|
|
4
|
-
|
|
5
|
-
## 25.2.6 (2024-05-28)
|
|
6
|
-
|
|
7
|
-
### MultiSelect
|
|
8
|
-
|
|
9
|
-
#### Bug Fixes
|
|
10
|
-
|
|
11
|
-
- `#I587743` - Fixed an accessibility issue in MultiSelect to improve usability for all users.
|
|
12
|
-
|
|
13
|
-
- `#I577257` - Fixed issue with incorrect binding of value property to MultiSelect.
|
|
14
|
-
|
|
15
|
-
## 25.2.5 (2024-05-21)
|
|
16
|
-
|
|
17
|
-
### DropDownTree
|
|
18
|
-
|
|
19
|
-
#### Bug Fixes
|
|
20
|
-
|
|
21
|
-
- `#I589141` - The Dropdown Tree component now includes tab focus support for the "Select All" checkbox element. With this enhancement, pressing the Tab key will move the focus to the "Select All" checkbox, and pressing Shift+Tab will move the focus back to the "Select All" checkbox during backward navigation.
|
|
22
|
-
|
|
23
|
-
- `#I586376` - Trigger the "select" event instantly after the item selection in Dropdown Tree popup.
|
|
24
|
-
|
|
25
|
-
### MultiSelect
|
|
26
|
-
|
|
27
|
-
#### Bug Fixes
|
|
28
|
-
|
|
29
|
-
- `#I188132` - Fixed an issue where the 'for' attribute was not being added to the label element of MultiSelect.
|
|
30
|
-
|
|
31
|
-
### DropDownList
|
|
32
|
-
|
|
33
|
-
#### Bug Fixes
|
|
34
|
-
|
|
35
|
-
- `#I583651` - Fixed the issue with the header remaining fixed on the page after scrolling while using dropdown with grouping on a scrollable page.
|
|
36
|
-
|
|
37
|
-
- `#I583092` - Fixed an issue where the dropdownlist did not retrieve the proper index when dynamically updating the datasource with an index.
|
|
38
|
-
|
|
39
|
-
## 25.2.4 (2024-05-14)
|
|
40
|
-
|
|
41
|
-
### MultiSelect
|
|
42
|
-
|
|
43
|
-
#### Bug Fixes
|
|
44
|
-
|
|
45
|
-
- `#I583683` - Resolved issue with allow object binding property causing errors when binding fields as integers
|
|
46
|
-
|
|
47
|
-
### DropDownTree
|
|
48
|
-
|
|
49
|
-
#### Bug Fixes
|
|
50
|
-
|
|
51
|
-
- `#I585791` - Resolved the SelectAll checkbox uncheck issue after closing and opening the Dropdown Tree component.
|
|
52
|
-
|
|
53
|
-
### DropDownList
|
|
54
|
-
|
|
55
|
-
#### Bug Fixes
|
|
56
|
-
|
|
57
|
-
- `#I580648` - Issue with "The dropdownlist not retrieving the proper index when grouping with allow filtering" has been resolved.
|
|
58
|
-
|
|
59
|
-
- `#I581080` - Fixed the issue with the dropdownlist index value not updating in component instances.
|
|
60
|
-
|
|
61
|
-
- `#I581098` - Fixed issue where aria-controls was not maintained when popup was in closed state.
|
|
62
|
-
|
|
63
|
-
## 25.2.3 (2024-05-08)
|
|
64
|
-
|
|
65
|
-
### ListBox
|
|
66
|
-
|
|
67
|
-
#### Bug Fixes
|
|
68
|
-
|
|
69
|
-
- `#I582752` - Issue with "Script error thrown in listbox when adding and removing items" has been resolved.
|
|
70
|
-
|
|
71
|
-
## 25.1.41 (2024-04-23)
|
|
72
|
-
|
|
73
|
-
### MultiSelect
|
|
74
|
-
|
|
75
|
-
#### Bug Fixes
|
|
76
|
-
|
|
77
|
-
- `#I571383` - Resolved issue where removing a long text tag in a multi-select drop down was also removing a short text tag.
|
|
78
|
-
|
|
79
|
-
### ListBox
|
|
80
|
-
|
|
81
|
-
#### Bug Fixes
|
|
82
|
-
|
|
83
|
-
- `#I566450` - Issue with "The disabled itemTemplate item is not move properly for listbox toolbar action" has been resolved.
|
|
84
|
-
|
|
85
|
-
## 25.1.40 (2024-04-16)
|
|
86
|
-
|
|
87
|
-
### ListBox
|
|
88
|
-
|
|
89
|
-
#### Bug Fixes
|
|
90
|
-
|
|
91
|
-
- `#I565976` - Issue with "The getSortedList data not update correctly while removeItem method after drag and drop action in listbox" has been resolved.
|
|
92
|
-
|
|
93
|
-
## 25.1.39 (2024-04-09)
|
|
94
|
-
|
|
95
|
-
### AutoComplete
|
|
96
|
-
|
|
97
|
-
#### Bug Fixes
|
|
98
|
-
|
|
99
|
-
- `#I556993` - Resolved the issue in Autocomplete where the highlight selection was not removed after selecting a value from the dropdown when autofill was enabled.
|
|
100
|
-
|
|
101
|
-
### ListBox
|
|
102
|
-
|
|
103
|
-
#### Bug Fixes
|
|
104
|
-
|
|
105
|
-
- `#I566450` - Issue with "When clicking moveAllTo toolbar, the disabled item is also moved to the listbox" has been resolved.
|
|
106
|
-
- `#I575330` - Issue with "Script error thrown in listbox while drag and drop hover on textbox element" has been resolved.
|
|
107
|
-
- `#I565976` - Issue with "The getSortedList and getDataList method datasource order is not proper while using addItems, removeItem method and change their position using drag and drop" has been resolved.
|
|
108
|
-
|
|
109
|
-
### DropDownTree
|
|
110
|
-
|
|
111
|
-
#### Bug Fixes
|
|
112
|
-
|
|
113
|
-
- `#I574653` - The issue aria-label attribute is not added to the input element in the Dropdown Tree component has been resolved.
|
|
114
|
-
|
|
115
|
-
- `#I572604` - An issue with "facing a console error when clicking a button inside the footer template in the Dropdown Tree component" has been resolved.
|
|
116
|
-
|
|
117
|
-
## 25.1.37 (2024-03-26)
|
|
118
|
-
|
|
119
|
-
### Mention
|
|
120
|
-
|
|
121
|
-
#### Bug Fixes
|
|
122
|
-
|
|
123
|
-
- `#FB51909` - Fixed an issue where filtering was not working properly when allow space was set to true.
|
|
124
|
-
|
|
125
|
-
### ComboBox
|
|
126
|
-
|
|
127
|
-
#### Bug Fixes
|
|
128
|
-
|
|
129
|
-
- `#I567781` - Fixed issue with Request being sent on initial loading when binding remote data and using the allowFiltering property.
|
|
130
|
-
|
|
131
|
-
### DropDownTree
|
|
132
|
-
|
|
133
|
-
#### Bug Fixes
|
|
134
|
-
|
|
135
|
-
- `#I569983` - Issue with "trim leading or trailing white-space when filtering in the Dropdown Tree" has been resolved.
|
|
136
|
-
|
|
137
|
-
### MultiSelect
|
|
138
|
-
|
|
139
|
-
#### Bug Fixes
|
|
140
|
-
|
|
141
|
-
- `#I567835` - Fixed XSS issue related to the highlight search feature when setting the filter query parameter without a value.
|
|
142
|
-
|
|
143
|
-
- `#I560783` - Fixed issue where clearing the searched value would automatically select another value.
|
|
144
|
-
|
|
145
|
-
- `#I524283` - Fixed issue where popup was not aligned properly when opening on top of the component.
|
|
146
|
-
|
|
147
|
-
- `#I565659` - Fixed an issue in Multiselect Checkbox mode where the height of the dropdown input would change when selecting and unselecting items.
|
|
148
|
-
|
|
149
|
-
## 25.1.35 (2024-03-15)
|
|
150
|
-
|
|
151
|
-
### ComboBox
|
|
152
|
-
|
|
153
|
-
#### Bug Fixes
|
|
154
|
-
|
|
155
|
-
- `#I560957` - Resolved issue with "Combo Box not possible to update the datasource dynamically".
|
|
156
|
-
|
|
157
|
-
### Dropdown Tree
|
|
158
|
-
|
|
159
|
-
#### Bug Fixes
|
|
160
|
-
|
|
161
|
-
- `#I558972` - Issue with "focus from the first item when items are selected in the Dropdown Tree component" has been resolved.
|
|
162
|
-
|
|
163
|
-
#### New Features
|
|
164
|
-
|
|
165
|
-
- `#I322379`,`#I521440` - The Dropdown Tree component has been updated to render the popup in the DOM dynamically, significantly improving performance. If you need the popup to render during the initial load, you can set the 'destroyPopupOnHide' property to 'false'.
|
|
166
|
-
|
|
167
|
-
### ListBox
|
|
168
|
-
|
|
169
|
-
#### Bug Fixes
|
|
170
|
-
|
|
171
|
-
- `#I522090` - Issue with "Keyboard action is not working properly in the ListBox filter" has been resolved.
|
|
172
|
-
|
|
173
|
-
### ListBox
|
|
174
|
-
|
|
175
|
-
#### Bug Fixes
|
|
176
|
-
|
|
177
|
-
- `#I514409` - Issue with "After clearing the filter Listbox item template was empty" has been resolved.
|
|
178
|
-
|
|
179
|
-
### ListBox
|
|
180
|
-
|
|
181
|
-
#### Bug Fixes
|
|
182
|
-
|
|
183
|
-
- `#I462373` - Issue with "Double quotes value not submitted while using the listbox component within the form" has been resolved.
|
|
184
|
-
|
|
185
|
-
### MultiSelect
|
|
186
|
-
|
|
187
|
-
#### Bug Fixes
|
|
188
|
-
|
|
189
|
-
- `#I480443` - Fixed console error that occurred when opening the multiselect in mobile mode
|
|
190
|
-
|
|
191
|
-
### DropdownList
|
|
192
|
-
|
|
193
|
-
#### Bug Fixes
|
|
194
|
-
|
|
195
|
-
- `#I472623` - Resolved an issue when the window is resizing the popup position is misaligned
|
|
196
|
-
|
|
197
|
-
### ListBox
|
|
198
|
-
|
|
199
|
-
#### Bug Fixes
|
|
200
|
-
|
|
201
|
-
- `#F43705` - Issue with "Dropping selected items does not work correctly while enabling the checkbox in listbox component." has been resolved.
|
|
202
|
-
|
|
203
|
-
### MultiSelect
|
|
204
|
-
|
|
205
|
-
#### Bug Fixes
|
|
206
|
-
|
|
207
|
-
- `#I451885` - Resolved the performance issue when multiselect component is rendered with large number of data.
|
|
208
|
-
|
|
209
|
-
## 21.2.5 (2023-05-16)
|
|
210
|
-
|
|
211
|
-
### ListBox
|
|
212
|
-
|
|
213
|
-
#### Bug Fixes
|
|
214
|
-
|
|
215
|
-
- `#F181311` - Issue with "Scrolling is not working while drag and drop the list box with item Template in angular platform" has been resolved.
|
|
216
|
-
- `#F181131` - Issue with "No Record Found text disappears while hovering the drag item on list box without drop" has been resolved.
|
|
217
|
-
- `#F181311` - Issue with "Scrolling is not working while drag and drop the list box with item Template" has been resolved.
|
|
218
|
-
- `#I445397` - Issue with "Script error thrown when navigate the listbox item in grouping listbox through keyboard navigation" has been resolved.
|
|
219
|
-
- `#I442262` - Issue with "Script error thrown while using destroy method in change event of list box" has been resolved.
|
|
220
|
-
- `#F38636` - Issue with "`selectItems` function doesn't work in listbox when values contain backslashes" has been resolved.
|
|
221
|
-
- `#F424252` - Issue with "Data source not update properly when we filtering and clicking move All button in listbox toolbar sample" has been resolved.
|
|
222
|
-
- `#I423072` - Issue with "`actionBegin` event argument not passes the filtered item properly while filtering and clicking move All button in listbox toolbar sample" has been resolved.
|
|
223
|
-
- `#F37860` - Issue with "Command button not working properly for multiselect in ListBox in Mac" has been resolved.
|
|
224
|
-
|
|
225
|
-
### DropDownList
|
|
226
|
-
|
|
227
|
-
#### Bug Fixes
|
|
228
|
-
|
|
229
|
-
- `#I397894` - The issue "aria-label added on input element instead of wrapper element while adding the aria-label by using Html Attribute property" has been resolved.
|
|
230
|
-
|
|
231
|
-
## 20.3.47 (2022-09-29)
|
|
232
|
-
|
|
233
|
-
### Mention
|
|
234
|
-
|
|
235
|
-
- The `@Mention` component can be used to display a pop-up suggestion list whenever the designated mention key character is entered into a text box, rich text editor, or other editable element.
|
|
236
|
-
|
|
237
|
-
**Key features**:
|
|
238
|
-
|
|
239
|
-
- **Data binding**: Binds the list of items from local and remote data sources such as JSON, OData, WCF, and RESTful web services.
|
|
240
|
-
|
|
241
|
-
- **Grouping**: Groups the logically related items under a single or specific category.
|
|
242
|
-
|
|
243
|
-
- **Filtering**: Filters the list items based on a character typed in the component.
|
|
244
|
-
|
|
245
|
-
- **Sorting**: Sorts the list items in alphabetical order (either ascending or descending).
|
|
246
|
-
|
|
247
|
-
- **Highlight search**: Highlights the typed text in the suggestion list.
|
|
248
|
-
|
|
249
|
-
- **Templates**: Customize the list item, display value, no records, and spinner loading content.
|
|
250
|
-
|
|
251
|
-
- **Accessibility**: Built-in accessibility support that helps to access all the Mention component features using the keyboard, on-screen readers, or other assistive technology devices.
|
|
252
|
-
|
|
253
|
-
### ListBox
|
|
254
|
-
|
|
255
|
-
#### Bug Fixes
|
|
256
|
-
|
|
257
|
-
- `#I406600` - Issue with "While using drag and drop the multiple item of listbox drop event argument only one item instead all selected item" has been resolved.
|
|
258
|
-
|
|
259
|
-
### ListBox
|
|
260
|
-
|
|
261
|
-
#### Bug Fixes
|
|
262
|
-
|
|
263
|
-
- `#I386103` - Issue with "Datasource not update properly after clearing the filtering in the dual listbox" has been resolved.
|
|
264
|
-
|
|
265
|
-
### ListBox
|
|
266
|
-
|
|
267
|
-
#### Bug Fixes
|
|
268
|
-
|
|
269
|
-
- `#I384240` - Issue with "`RemoveItems` not working properly after adding items with specific index" has been resolved.
|
|
270
|
-
|
|
271
|
-
### ListBox
|
|
272
|
-
|
|
273
|
-
#### Bug Fixes
|
|
274
|
-
|
|
275
|
-
- `#I383114` - Issue with "Drop event argument not passes the selected item properly, while drag and drop the multiple item of listbox" has been resolved.
|
|
276
|
-
|
|
277
|
-
### MultiSelect
|
|
278
|
-
|
|
279
|
-
#### Bug Fixes
|
|
280
|
-
|
|
281
|
-
- `#FB31100` - Issue with "popup is not opened while changing the `popupHeight` dynamically in the `beforeOpen` event" has been resolved.
|
|
282
|
-
|
|
283
|
-
## 19.3.56 (2021-12-02)
|
|
284
|
-
|
|
285
|
-
### MultiSelect
|
|
286
|
-
|
|
287
|
-
#### Bug Fixes
|
|
288
|
-
|
|
289
|
-
- `#I343860` - Issue with "list items are not read by the NVDA screen reader" has been resolved.
|
|
290
|
-
|
|
291
|
-
### Dropdown Tree
|
|
292
|
-
|
|
293
|
-
#### Bug Fixes
|
|
294
|
-
|
|
295
|
-
- `#I342745` - The performance issue that occurred when selecting a node that was rendered with a huge data source has been resolved.
|
|
296
|
-
|
|
297
|
-
## 19.3.55 (2021-11-23)
|
|
298
|
-
|
|
299
|
-
### AutoComplete
|
|
300
|
-
|
|
301
|
-
#### Bug Fixes
|
|
302
|
-
|
|
303
|
-
- `#I343913` - Issue with "exception throws while preventing the request to the server in the `actionBegin` event" has been resolved.
|
|
304
|
-
|
|
305
|
-
## 19.3.53 (2021-11-12)
|
|
306
|
-
|
|
307
|
-
### Dropdown Tree
|
|
308
|
-
|
|
309
|
-
#### Bug Fixes
|
|
310
|
-
|
|
311
|
-
- `#I345378` - The issue with "The interaction value is not updated properly in the select event while selecting via Select All checkbox" has been resolved.
|
|
312
|
-
|
|
313
|
-
## 19.3.48 (2021-11-02)
|
|
314
|
-
|
|
315
|
-
### Dropdown Tree
|
|
316
|
-
|
|
317
|
-
#### Bug Fixes
|
|
318
|
-
|
|
319
|
-
- `#I344723` - The issue with "The selected value is not removed from the Dropdown Tree while using the value property as two-way binding" has been resolved.
|
|
320
|
-
|
|
321
|
-
## 19.3.47 (2021-10-26)
|
|
322
|
-
|
|
323
|
-
### Dropdown Tree
|
|
324
|
-
|
|
325
|
-
#### Bug Fixes
|
|
326
|
-
|
|
327
|
-
- `#I343096` - The issue with "The Dropdown Tree item getting unselected when clicking the text content of the input element" has been fixed.
|
|
328
|
-
|
|
329
|
-
## 19.3.46 (2021-10-19)
|
|
330
|
-
|
|
331
|
-
### Dropdown Tree
|
|
332
|
-
|
|
333
|
-
#### Bug Fixes
|
|
334
|
-
|
|
335
|
-
- `#F169190` - The issue with "The Dropdown tree is not focused while pressing single tab key" has been resolved.
|
|
336
|
-
|
|
337
|
-
- `#I341135` - The issue with "The Dropdown Tree selected items are misaligned while adding the `e-outline` and `e-filled` CSS classes" has been resolved.
|
|
338
|
-
|
|
339
|
-
## 19.3.45 (2021-10-12)
|
|
340
|
-
|
|
341
|
-
### ComboBox
|
|
342
|
-
|
|
343
|
-
#### Bug Fixes
|
|
344
|
-
|
|
345
|
-
- `#I343666` - Issue with "data list is not updated to the popup while changing the query property on dynamically with filtering mode" has been resolved.
|
|
346
|
-
|
|
347
|
-
## 19.3.44 (2021-10-05)
|
|
348
|
-
|
|
349
|
-
### Dropdown Tree
|
|
350
|
-
|
|
351
|
-
#### New Features
|
|
352
|
-
|
|
353
|
-
- `#I301222` - Provided support to display custom selected values template in the Dropdown Tree component.
|
|
354
|
-
|
|
355
|
-
#### Bug Fixes
|
|
356
|
-
|
|
357
|
-
- `#I342360`, `#I342351` - The issue with "The Dropdown Tree component is not rendered when providing an id that starts with an integer type" has been resolved.
|
|
358
|
-
|
|
359
|
-
- `I341114` - Issue with "When listbox is selected with checkbox, drag and drop is not working properly" has been resolved.
|
|
360
|
-
|
|
361
|
-
## 19.2.62 (2021-09-14)
|
|
362
|
-
|
|
363
|
-
### DropDownList
|
|
364
|
-
|
|
365
|
-
#### Bug Fixes
|
|
366
|
-
|
|
367
|
-
- `#I341137` - Issue with "fixed grouping headers are not updated while scrolling the popup after set the grouping dynamically" has been resolved.
|
|
368
|
-
|
|
369
|
-
## 19.2.55 (2021-08-11)
|
|
370
|
-
|
|
371
|
-
### ListBox
|
|
372
|
-
|
|
373
|
-
#### New Features
|
|
374
|
-
|
|
375
|
-
- Provided No Record Template support.
|
|
376
|
-
|
|
377
|
-
### DropDownList
|
|
378
|
-
|
|
379
|
-
#### Bug Fixes
|
|
380
|
-
|
|
381
|
-
- Issue with "incremental search is not working properly while destroying and rendering the component again" has been resolved.
|
|
382
|
-
|
|
383
|
-
### AutoComplete
|
|
384
|
-
|
|
385
|
-
#### Bug Fixes
|
|
386
|
-
|
|
387
|
-
- `I335313` - Issue with "select element is displayed while rendering the component with floating label" has been resolved.
|
|
388
|
-
|
|
389
|
-
### Dropdown Tree
|
|
390
|
-
|
|
391
|
-
#### Bug Fixes
|
|
392
|
-
|
|
393
|
-
- `#F167371` - The performance issue that occurred when destroying the Dropdown Tree with a huge data source and CheckBox support has been resolved.
|
|
394
|
-
|
|
395
|
-
## 19.2.51 (2021-08-03)
|
|
396
|
-
|
|
397
|
-
### ListBox
|
|
398
|
-
|
|
399
|
-
#### Bug Fixes
|
|
400
|
-
|
|
401
|
-
- `#I336382` - The issue with getDataList not updated properly after removing the items has been fixed.
|
|
402
|
-
|
|
403
|
-
### Dropdown Tree
|
|
404
|
-
|
|
405
|
-
#### Bug Fixes
|
|
406
|
-
|
|
407
|
-
- `#FB25687` - The issue with "The popup is not opened for the second time in the Dropdown Tree component when it is rendered inside the Accordion" has been resolved.
|
|
408
|
-
|
|
409
|
-
## 19.2.49 (2021-07-27)
|
|
410
|
-
|
|
411
|
-
### MultiSelect
|
|
412
|
-
|
|
413
|
-
#### Bug Fixes
|
|
414
|
-
|
|
415
|
-
- `#FB26653` - Issue with "placeholder is not updated properly while updating the placeholder value with special characters" has been resolved.
|
|
416
|
-
|
|
417
|
-
## 19.2.48 (2021-07-20)
|
|
418
|
-
|
|
419
|
-
### ListBox
|
|
420
|
-
|
|
421
|
-
#### Bug Fixes
|
|
422
|
-
|
|
423
|
-
- `#I333351` - The issue with item template not works while using drag and drop issue has been fixed.
|
|
424
|
-
|
|
425
|
-
### MultiSelect
|
|
426
|
-
|
|
427
|
-
#### Bug Fixes
|
|
428
|
-
|
|
429
|
-
- `#I331063`, `#I335590` - Issue with "popup is not opened while rendering the component with HTML select tag and `dataSource` property" has been resolved.
|
|
430
|
-
|
|
431
|
-
- `#I335674` - Issue with "filtering list item is reset to the popup while scrolling the popup item using mouse" has been resolved.
|
|
432
|
-
|
|
433
|
-
### Dropdown Tree
|
|
434
|
-
|
|
435
|
-
#### Bug Fixes
|
|
436
|
-
|
|
437
|
-
- `#I333505` - The issue with "When placing the button in the header and footer templates of the Dropdown Tree, the button's click event is not triggered" has been resolved.
|
|
438
|
-
- `#I304231` - Improved the item selection performance with large items in the Dropdown Tree component.
|
|
439
|
-
|
|
440
|
-
## 19.2.47 (2021-07-13)
|
|
441
|
-
|
|
442
|
-
### MultiSelect
|
|
443
|
-
|
|
444
|
-
#### Bug Fixes
|
|
445
|
-
|
|
446
|
-
- `#I331063` - Issue with "popup is not opened while rendering component with HTML select tag and dynamically changing the data source" has been resolved.
|
|
447
|
-
|
|
448
|
-
## 19.1.65 (2021-05-25)
|
|
449
|
-
|
|
450
|
-
### DropDownList
|
|
451
|
-
|
|
452
|
-
#### Bug Fixes
|
|
453
|
-
|
|
454
|
-
- Issue with "Improper data source values are loaded in the popup while modifying query property" has been resolved.
|
|
455
|
-
|
|
456
|
-
## 19.1.59 (2021-05-04)
|
|
457
|
-
|
|
458
|
-
### ListBox
|
|
459
|
-
|
|
460
|
-
#### Bug Fixes
|
|
461
|
-
|
|
462
|
-
- `#317293` - Listbox event properties descriptions added.
|
|
463
|
-
|
|
464
|
-
### MultiSelect
|
|
465
|
-
|
|
466
|
-
#### Bug Fixes
|
|
467
|
-
|
|
468
|
-
- `#I323182` - Issue with "grouping headers are duplicated and overlapped with popup items while scrolling the popup after selecting the first popup item" has been resolved.
|
|
469
|
-
|
|
470
|
-
## 19.1.57 (2021-04-20)
|
|
471
|
-
|
|
472
|
-
### ListBox
|
|
473
|
-
|
|
474
|
-
#### Bug Fixes
|
|
475
|
-
|
|
476
|
-
- `#311323` - Issue with 'No Records Found' text occurred twice has been resolved.
|
|
477
|
-
|
|
478
|
-
## 19.1.56 (2021-04-13)
|
|
479
|
-
|
|
480
|
-
### ListBox
|
|
481
|
-
|
|
482
|
-
#### Bug Fixes
|
|
483
|
-
|
|
484
|
-
- `#316046` - Action complete event not triggered when sort order property is given issue is fixed.
|
|
485
|
-
|
|
486
|
-
- `#311323` - DataSource missing while filtering is applied issue has been resolved.
|
|
487
|
-
|
|
488
|
-
- `#163935` - Previous index is wrong in drag and drop event has been fixed.
|
|
489
|
-
|
|
490
|
-
## 19.1.54 (2021-03-30)
|
|
491
|
-
|
|
492
|
-
### Dropdown Tree
|
|
493
|
-
|
|
494
|
-
#### Bug Fixes
|
|
495
|
-
|
|
496
|
-
`#317088` - The issue with "The popup is not opened for the second time in the Dropdown Tree component when it is rendered inside the Dialog" has been resolved.
|
|
497
|
-
|
|
498
|
-
## 18.4.47 (2021-03-09)
|
|
499
|
-
|
|
500
|
-
### MultiSelect
|
|
501
|
-
|
|
502
|
-
#### Bug Fixes
|
|
503
|
-
|
|
504
|
-
`#317598` - Issue with "selected values are not posted properly while clicking on the select all option with predefined value" has been resolved.
|
|
505
|
-
|
|
506
|
-
## 18.4.44 (2021-02-23)
|
|
507
|
-
|
|
508
|
-
### MultiSelect
|
|
509
|
-
|
|
510
|
-
#### New Features
|
|
511
|
-
|
|
512
|
-
- `#283275`, `#289148`, `#296652` - Now, selection and deselection performance is improved while providing the large data to the component.
|
|
513
|
-
|
|
514
|
-
## 18.4.43 (2021-02-16)
|
|
515
|
-
|
|
516
|
-
### Dropdown Tree
|
|
517
|
-
|
|
518
|
-
#### Bug Fixes
|
|
519
|
-
|
|
520
|
-
- `#310244` - The issue on changing the `treeSettings.autoCheck` property dynamically in the `Box` mode has been resolved in the Dropdown Tree component.
|
|
521
|
-
|
|
522
|
-
## 18.4.35 (2021-01-19)
|
|
523
|
-
|
|
524
|
-
### DropDownList
|
|
525
|
-
|
|
526
|
-
#### Bug Fixes
|
|
527
|
-
|
|
528
|
-
- `#310665` - Issue with "`select` event is triggered twice while preventing the value selection" has been resolved.
|
|
529
|
-
|
|
530
|
-
## 18.4.34 (2021-01-12)
|
|
531
|
-
|
|
532
|
-
### ListBox
|
|
533
|
-
|
|
534
|
-
#### Bug Fixes
|
|
535
|
-
|
|
536
|
-
- Issue with remote data has been fixed.
|
|
537
|
-
|
|
538
|
-
## 18.4.32 (2020-12-29)
|
|
539
|
-
|
|
540
|
-
### AutoComplete
|
|
541
|
-
|
|
542
|
-
#### Bug Fixes
|
|
543
|
-
|
|
544
|
-
- `#308003` - Issue with 'highlight search is not working while rendering component along with `iconCss` property' has been resolved.
|
|
545
|
-
|
|
546
|
-
### DropDownList
|
|
547
|
-
|
|
548
|
-
#### Bug Fixes
|
|
549
|
-
|
|
550
|
-
- `#304837` - Issue with "value property is not updated properly while rendering dropdown with select tag and list has empty string as field value" has been resolved.
|
|
551
|
-
|
|
552
|
-
## 18.4.31 (2020-12-22)
|
|
553
|
-
|
|
554
|
-
### ListBox
|
|
555
|
-
|
|
556
|
-
#### Bug Fixes
|
|
557
|
-
|
|
558
|
-
- Issue with 'drag and drop' has been fixed.
|
|
559
|
-
- Issue with toolbar option has been fixed.
|
|
560
|
-
|
|
561
|
-
## 18.3.52 (2020-12-01)
|
|
562
|
-
|
|
563
|
-
### DropDownList
|
|
564
|
-
|
|
565
|
-
#### Bug Fixes
|
|
566
|
-
|
|
567
|
-
- `#304117`,`#304560` - EJ1 and EJ2 controls theme compatibility issue resolved.
|
|
568
|
-
|
|
569
|
-
### MultiSelect
|
|
570
|
-
|
|
571
|
-
#### Bug Fixes
|
|
572
|
-
|
|
573
|
-
- `#304117`,`#304560` - EJ1 and EJ2 controls theme compatibility issue resolved.
|
|
574
|
-
|
|
575
|
-
### ComboBox
|
|
576
|
-
|
|
577
|
-
#### Bug Fixes
|
|
578
|
-
|
|
579
|
-
- `#304117`,`#304560` - EJ1 and EJ2 controls theme compatibility issue resolved.
|
|
580
|
-
|
|
581
|
-
### AutoComplete
|
|
582
|
-
|
|
583
|
-
#### Bug Fixes
|
|
584
|
-
|
|
585
|
-
- `#304117`,`#304560` - EJ1 and EJ2 controls theme compatibility issue resolved.
|
|
586
|
-
|
|
587
|
-
### ListBox
|
|
588
|
-
|
|
589
|
-
#### Bug Fixes
|
|
590
|
-
|
|
591
|
-
- Issue with 'removeItem' method has been fixed.
|
|
592
|
-
|
|
593
|
-
## 18.3.44 (2020-10-27)
|
|
594
|
-
|
|
595
|
-
### MultiSelect
|
|
596
|
-
|
|
597
|
-
#### Bug Fixes
|
|
598
|
-
|
|
599
|
-
- `#292479` - Issue with "beforeOpen event is triggered while rendering the component with initial value" has been resolved.
|
|
600
|
-
|
|
601
|
-
## 18.3.42 (2020-10-20)
|
|
602
|
-
|
|
603
|
-
### Dropdown Tree
|
|
604
|
-
|
|
605
|
-
#### Bug Fixes
|
|
606
|
-
|
|
607
|
-
- `F155642` - The issue with "the two-way binding is not working while enabling checkbox support in the Dropdown Tree component" has been resolved.
|
|
608
|
-
|
|
609
|
-
### ListBox
|
|
610
|
-
|
|
611
|
-
#### Bug Fixes
|
|
612
|
-
|
|
613
|
-
- Issue with 'dragStart' event has been fixed.
|
|
614
|
-
|
|
615
|
-
## 18.3.40 (2020-10-13)
|
|
616
|
-
|
|
617
|
-
### MultiSelect
|
|
618
|
-
|
|
619
|
-
#### Bug Fixes
|
|
620
|
-
|
|
621
|
-
- `#291884` - Issue with "clear icon overlaps the selected value" has been resolved.
|
|
622
|
-
|
|
623
|
-
## 18.3.35 (2020-10-01)
|
|
624
|
-
|
|
625
|
-
### ListBox
|
|
626
|
-
|
|
627
|
-
#### Bug Fixes
|
|
628
|
-
|
|
629
|
-
- compatibility issues with EJ1 has been fixed.
|
|
630
|
-
|
|
631
|
-
## 18.2.58 (2020-09-15)
|
|
632
|
-
|
|
633
|
-
### ListBox
|
|
634
|
-
|
|
635
|
-
#### Bug Fixes
|
|
636
|
-
|
|
637
|
-
- 'moveAll' is not working after applied grouping has been fixed.
|
|
638
|
-
|
|
639
|
-
## 18.2.54 (2020-08-18)
|
|
640
|
-
|
|
641
|
-
### Dropdown Tree
|
|
642
|
-
|
|
643
|
-
#### Breaking Changes
|
|
644
|
-
|
|
645
|
-
- `#273325` - Provided the option to customize the Dropdown Tree’s input height when the content is increased.
|
|
646
|
-
|
|
647
|
-
### MultiSelect
|
|
648
|
-
|
|
649
|
-
#### Bug Fixes
|
|
650
|
-
|
|
651
|
-
- `#275308` - Performance issue will no longer occurs when render the multiselect with checkbox.
|
|
652
|
-
|
|
653
|
-
## 18.2.48 (2020-08-04)
|
|
654
|
-
|
|
655
|
-
### ListBox
|
|
656
|
-
|
|
657
|
-
#### New Features
|
|
658
|
-
|
|
659
|
-
- `#285392` - Enable / disable list items based on unique value support provided.
|
|
660
|
-
|
|
661
|
-
### Dropdown Tree
|
|
662
|
-
|
|
663
|
-
#### Bug Fixes
|
|
664
|
-
|
|
665
|
-
- The accessibility issue with “The Dropdown Tree text is not reading properly when enabling the multi-selection support” has been resolved.
|
|
666
|
-
|
|
667
|
-
## 18.2.47 (2020-07-28)
|
|
668
|
-
|
|
669
|
-
### DropDownList
|
|
670
|
-
|
|
671
|
-
#### Bug Fixes
|
|
672
|
-
|
|
673
|
-
- `#277503` - Issue with "sort order is not working for filtering dropdown after adding new item using addItem method" has been resolved.
|
|
674
|
-
|
|
675
|
-
### ListBox
|
|
676
|
-
|
|
677
|
-
#### Bug Fixes
|
|
678
|
-
|
|
679
|
-
- Filtering is not working in IE browser has been fixed.
|
|
680
|
-
|
|
681
|
-
## 18.1.59 (2020-06-23)
|
|
682
|
-
|
|
683
|
-
### MultiSelect
|
|
684
|
-
|
|
685
|
-
#### Bug Fixes
|
|
686
|
-
|
|
687
|
-
-`#F154635` - Issue with "floating label is not floated properly while rendering with filter and outline theme appearance" has been resolved.
|
|
688
|
-
|
|
689
|
-
## 18.1.57 (2020-06-16)
|
|
690
|
-
|
|
691
|
-
### ComboBox
|
|
692
|
-
|
|
693
|
-
#### Bug Fixes
|
|
694
|
-
|
|
695
|
-
- `#279216` - Now, you can set empty data source dynamically.
|
|
696
|
-
|
|
697
|
-
## 18.1.56 (2020-06-09)
|
|
698
|
-
|
|
699
|
-
### ComboBox
|
|
700
|
-
|
|
701
|
-
#### Bug Fixes
|
|
702
|
-
|
|
703
|
-
- Issue with "select event is not triggered while doing first selection with autofill" has been resolved.
|
|
704
|
-
|
|
705
|
-
## 18.1.55 (2020-06-02)
|
|
706
|
-
|
|
707
|
-
### MultiSelect
|
|
708
|
-
|
|
709
|
-
#### Bug Fixes
|
|
710
|
-
|
|
711
|
-
-`#273796` - Now, e-outline class is added to the filter input
|
|
712
|
-
|
|
713
|
-
### Dropdown Tree
|
|
714
|
-
|
|
715
|
-
#### Bug Fixes
|
|
716
|
-
|
|
717
|
-
- `#276800` - The issue with “The selected item is maintained in DOM after clearing the item using clear icon in the Dropdown Tree component” has been resolved.
|
|
718
|
-
|
|
719
|
-
- `#278072` - The issue with “The Dropdown Tree selected values are not received in the form post back” has been resolved.
|
|
720
|
-
|
|
721
|
-
- `#274468` - The issue with “The Dropdown Tree popup element is incorrectly positioned when it is rendered inside the Bootstrap dialog” has been fixed.
|
|
722
|
-
|
|
723
|
-
#### New Features
|
|
724
|
-
|
|
725
|
-
- `#277378` - Provided the support to reset the values in the Dropdown Tree component when the form reset method is called.
|
|
726
|
-
|
|
727
|
-
## 18.1.53 (2020-05-19)
|
|
728
|
-
|
|
729
|
-
### MultiSelect
|
|
730
|
-
|
|
731
|
-
#### Bug Fixes
|
|
732
|
-
|
|
733
|
-
- `#273796` - Now, filtering works properly when paste the value in the input element.
|
|
734
|
-
|
|
735
|
-
### Dropdown Tree
|
|
736
|
-
|
|
737
|
-
#### Bug Fixes
|
|
738
|
-
|
|
739
|
-
- `#274351` - The issue with "The Dropdown Tree initialized value which is not getting it in the form post" has been resolved.
|
|
740
|
-
|
|
741
|
-
### ListBox
|
|
742
|
-
|
|
743
|
-
#### New Features
|
|
744
|
-
|
|
745
|
-
- Provided Placeholder support to filterbar in listbox.
|
|
746
|
-
|
|
747
|
-
#### Bug Fixes
|
|
748
|
-
|
|
749
|
-
- Move to and move from throws script error when listbox rendered with item template issue fixed.
|
|
750
|
-
|
|
751
|
-
## 18.1.52 (2020-05-13)
|
|
752
|
-
|
|
753
|
-
### ListBox
|
|
754
|
-
|
|
755
|
-
#### Bug Fixes
|
|
756
|
-
|
|
757
|
-
- Move to and move from throws script error when listbox rendered with item template issue fixed.
|
|
758
|
-
|
|
759
|
-
## 18.1.48 (2020-05-05)
|
|
760
|
-
|
|
761
|
-
### MultiSelect
|
|
762
|
-
|
|
763
|
-
#### Bug Fixes
|
|
764
|
-
|
|
765
|
-
- `#273796` - Issue with clear icon misalignment in the material outline has been resolved.
|
|
766
|
-
|
|
767
|
-
### ListBox
|
|
768
|
-
|
|
769
|
-
#### Bug Fixes
|
|
770
|
-
|
|
771
|
-
- Issue with drag and drop in empty listbox has been fixed.
|
|
772
|
-
|
|
773
|
-
## 18.1.46 (2020-04-28)
|
|
774
|
-
|
|
775
|
-
### Dropdown Tree
|
|
776
|
-
|
|
777
|
-
#### Bug Fixes
|
|
778
|
-
|
|
779
|
-
- The issue with `The Dropdown Tree placeholder hides while opening the popup, when enabling the checkbox support` has been fixed.
|
|
780
|
-
|
|
781
|
-
### ListBox
|
|
782
|
-
|
|
783
|
-
#### Bug Fixes
|
|
784
|
-
|
|
785
|
-
- Issue with 'enabled' properly when listbox have toolbar option has been fixed.
|
|
786
|
-
- Issue with Filter element when the scrolling has enabled in listbox.
|
|
787
|
-
|
|
788
|
-
## 18.1.43 (2020-04-07)
|
|
789
|
-
|
|
790
|
-
### ListBox
|
|
791
|
-
|
|
792
|
-
#### Bug Fixes
|
|
793
|
-
|
|
794
|
-
- `moveTo` method is not working properly when listbox have disabled items has been fixed.
|
|
795
|
-
|
|
796
|
-
## 18.1.36-beta (2020-03-19)
|
|
797
|
-
|
|
798
|
-
### Common
|
|
799
|
-
|
|
800
|
-
#### Breaking Changes
|
|
801
|
-
|
|
802
|
-
The newly added `Dropdown Tree` component in dropdowns package requires `Navigations` dependency, so now it is mandatory to include the `ej2-navigations.umd.min.js` in `system.js` configuration if you are using the system.js module loader.
|
|
803
|
-
Update the system.js configuration while going with this version and above.
|
|
804
|
-
|
|
805
|
-
### Dropdown Tree
|
|
806
|
-
|
|
807
|
-
The Dropdown Tree control allows you to select single or multiple values from hierarchical data in a tree-like structure. It has several out-of-the-box features, such as data binding, check boxes, templates, UI customization, accessibility, and preselected values. The available key features are
|
|
808
|
-
|
|
809
|
-
- **Data binding** - Bind and access a hierarchical list of items from a local or server-side data source.
|
|
810
|
-
|
|
811
|
-
- **Check boxes** - Select more than one item in the Dropdown Tree control without affecting the UI appearance.
|
|
812
|
-
|
|
813
|
-
- **Multiple selection** - Select more than one item in the control.
|
|
814
|
-
|
|
815
|
-
- **Sorting** - Display the Dropdown Tree items in ascending or descending order.
|
|
816
|
-
|
|
817
|
-
- **Template** - Customize the Dropdown Tree items, header, footer, action failure content, and no records content.
|
|
818
|
-
|
|
819
|
-
- **Accessibility** - Provide access to all the Dropdown Tree control features through keyboard interaction, on-screen readers, and other assistive technology devices.
|
|
820
|
-
|
|
821
|
-
### ListBox
|
|
822
|
-
|
|
823
|
-
#### Bug Fixes
|
|
824
|
-
|
|
825
|
-
- Dynamic show checkBox not working in grouping has been fixed.
|
|
826
|
-
|
|
827
|
-
## 17.4.51 (2020-02-25)
|
|
828
|
-
|
|
829
|
-
### MultiSelect
|
|
830
|
-
|
|
831
|
-
#### Bug Fixes
|
|
832
|
-
|
|
833
|
-
- `#263579` - Issue with "the performance issue while clear the selected items using clear button" issue has been resolved.
|
|
834
|
-
|
|
835
|
-
## 17.4.50 (2020-02-18)
|
|
836
|
-
|
|
837
|
-
### ListBox
|
|
838
|
-
|
|
839
|
-
#### Bug Fixes
|
|
840
|
-
|
|
841
|
-
- `#261827` - Issue when ListBox and menu component in a same page has been resolved.
|
|
842
|
-
|
|
843
|
-
## 17.4.49 (2020-02-11)
|
|
844
|
-
|
|
845
|
-
### DropDownList
|
|
846
|
-
|
|
847
|
-
#### Bug Fixes
|
|
848
|
-
|
|
849
|
-
- `#261901` - Issue with "cascade dropdown previous value maintained while enabled the filtering" has been resolved.
|
|
850
|
-
|
|
851
|
-
## 17.4.47 (2020-02-05)
|
|
852
|
-
|
|
853
|
-
### ListBox
|
|
854
|
-
|
|
855
|
-
#### Bug Fixes
|
|
856
|
-
|
|
857
|
-
- `#F151029` - Checkbox selection not updated on initial load, while rendering the ListBox with `iconCss` issue fixed.
|
|
858
|
-
- Provided 'actionBegin' and 'actionComplete' event when moving items.
|
|
859
|
-
|
|
860
|
-
## 17.4.46 (2020-01-30)
|
|
861
|
-
|
|
862
|
-
### MultiSelect
|
|
863
|
-
|
|
864
|
-
#### Bug Fixes
|
|
865
|
-
|
|
866
|
-
- `#261574` - Now, `isInteracted` argument updated properly in the change event while focusout.
|
|
867
|
-
|
|
868
|
-
## 17.4.44 (2021-01-21)
|
|
869
|
-
|
|
870
|
-
### ListBox
|
|
871
|
-
|
|
872
|
-
#### Bug Fixes
|
|
873
|
-
|
|
874
|
-
- `#260635` - Sorted datasource not updated properly in ListBox has been fixed.
|
|
875
|
-
|
|
876
|
-
## 17.4.43 (2020-01-14)
|
|
877
|
-
|
|
878
|
-
### ListBox
|
|
879
|
-
|
|
880
|
-
#### Bug Fixes
|
|
881
|
-
|
|
882
|
-
- `#F150435` - Script error occurs during disabled toolbar button click has been resolved.
|
|
883
|
-
|
|
884
|
-
## 17.4.41 (2020-01-07)
|
|
885
|
-
|
|
886
|
-
### ListBox
|
|
887
|
-
|
|
888
|
-
#### Bug Fixes
|
|
889
|
-
|
|
890
|
-
- `#255830` - filter and grouping are not working on drag and drop and toolbar button states not updated properly has been resolved.
|
|
891
|
-
|
|
892
|
-
## 17.4.40 (2019-12-24)
|
|
893
|
-
|
|
894
|
-
### DropDownList
|
|
895
|
-
|
|
896
|
-
#### Bug Fixes
|
|
897
|
-
|
|
898
|
-
- `#255255` - Issue with "JAWS screen reader does not read the pre-selected value" has been resolved.
|
|
899
|
-
|
|
900
|
-
### ListBox
|
|
901
|
-
|
|
902
|
-
#### Bug Fixes
|
|
903
|
-
|
|
904
|
-
- Issue with Drag and Drop is fixed.
|
|
905
|
-
|
|
906
|
-
## 17.4.39 (2019-12-17)
|
|
907
|
-
|
|
908
|
-
### ComboBox
|
|
909
|
-
|
|
910
|
-
#### Bug Fixes
|
|
911
|
-
|
|
912
|
-
- `#256098` - The mobile device ENTER key selection issue in the focused item issue has resolved.
|
|
913
|
-
|
|
914
|
-
### MultiSelect
|
|
915
|
-
|
|
916
|
-
#### Bug Fixes
|
|
917
|
-
|
|
918
|
-
- `#255765` - Issue with "dynamically added item not displayed initially in box mode when control in focus state" has been resolved.
|
|
919
|
-
|
|
920
|
-
### DropDownList
|
|
921
|
-
|
|
922
|
-
#### Bug Fixes
|
|
923
|
-
|
|
924
|
-
- `#256908` - Issue with "script error throws while pressing the escape key after filter the items in the popup" has been resolved.
|
|
925
|
-
|
|
926
|
-
### ListBox
|
|
927
|
-
|
|
928
|
-
#### New Features
|
|
929
|
-
|
|
930
|
-
- Provided public methods for `toolbar` actions.
|
|
931
|
-
- Provided `getDataByValues` method for getting array of data objects.
|
|
932
|
-
|
|
933
|
-
#### Bug Fixes
|
|
934
|
-
|
|
935
|
-
- `#252496` - Checkbox selection not maintained after removing filter has been fixed.
|
|
936
|
-
- `#F147087` - script error "contains of undefined in ListBox" while rendering the ListBox and multi select in the same router page has been fixed.
|
|
937
|
-
|
|
938
|
-
## 17.3.29 (2019-11-26)
|
|
939
|
-
|
|
940
|
-
### AutoComplete
|
|
941
|
-
|
|
942
|
-
#### New Features
|
|
943
|
-
|
|
944
|
-
- `#254473` - Now, you can clear the selected values using `clear` method.
|
|
945
|
-
|
|
946
|
-
### ComboBox
|
|
947
|
-
|
|
948
|
-
#### New Features
|
|
949
|
-
|
|
950
|
-
- `#254473` - Now, you can clear the selected values using `clear` method.
|
|
951
|
-
|
|
952
|
-
### DropDownList
|
|
953
|
-
|
|
954
|
-
#### New Features
|
|
955
|
-
|
|
956
|
-
- `#254473` - Now, you can clear the selected values using `clear` method.
|
|
957
|
-
|
|
958
|
-
### MultiSelect
|
|
959
|
-
|
|
960
|
-
#### New Features
|
|
961
|
-
|
|
962
|
-
- `#254473` - Now, you can clear the selected values using `clear` method.
|
|
963
|
-
|
|
964
|
-
## 17.3.28 (2019-11-19)
|
|
965
|
-
|
|
966
|
-
### MultiSelect
|
|
967
|
-
|
|
968
|
-
#### Bug Fixes
|
|
969
|
-
|
|
970
|
-
- `#F148867` , `#254713` - The issue with "rendering the `itemTemplate` when value is bound to the control" has been resolved.
|
|
971
|
-
|
|
972
|
-
## 17.3.21 (2019-10-30)
|
|
973
|
-
|
|
974
|
-
### ComboBox
|
|
975
|
-
|
|
976
|
-
#### Bug Fixes
|
|
977
|
-
|
|
978
|
-
- `#251466` - Now, you can set width property in `em` unit.
|
|
979
|
-
|
|
980
|
-
- `#251650` - Issue with 'filtered list item is not getting focused when set filter type as contains' has been resolved.
|
|
981
|
-
|
|
982
|
-
- `#251325` - Issue with "once combobox popup open is prevented by setting args.cancel as true in open event then you can't remove the prevent a popup opening using open event" has been resolved.
|
|
983
|
-
|
|
984
|
-
### DropDownList
|
|
985
|
-
|
|
986
|
-
#### Bug Fixes
|
|
987
|
-
|
|
988
|
-
- `#251466` - Now, you can set width property in `em` unit.
|
|
989
|
-
|
|
990
|
-
### MultiSelect
|
|
991
|
-
|
|
992
|
-
#### Bug Fixes
|
|
993
|
-
|
|
994
|
-
- `#251466` - Now, you can set width property in `em` unit.
|
|
995
|
-
|
|
996
|
-
### ListBox
|
|
997
|
-
|
|
998
|
-
#### Bug Fixes
|
|
999
|
-
|
|
1000
|
-
- `#F147087` - script error "class List of undefined" while grouping has been fixed.
|
|
1001
|
-
- `#F147408` - Move To toolbar button not working when loading the list box using `remote data` has been resolved.
|
|
1002
|
-
- `#249771` - script error while performing the toolbar actions in dual ListBox with `data manager` in `EJ2 MVC` has been resolved
|
|
1003
|
-
|
|
1004
|
-
## 17.3.19 (2019-10-22)
|
|
1005
|
-
|
|
1006
|
-
### ListBox
|
|
1007
|
-
|
|
1008
|
-
- Drag Event returns null value issue is fixed
|
|
1009
|
-
|
|
1010
|
-
## 17.3.17 (2019-10-15)
|
|
1011
|
-
|
|
1012
|
-
### MultiSelect
|
|
1013
|
-
|
|
1014
|
-
#### Bug Fixes
|
|
1015
|
-
|
|
1016
|
-
- `#250710` - Now, you can filter the data while render the component using `select` element.
|
|
1017
|
-
|
|
1018
|
-
## 17.3.16 (2019-10-09)
|
|
1019
|
-
|
|
1020
|
-
### ListBox
|
|
1021
|
-
|
|
1022
|
-
#### Bug Fixes
|
|
1023
|
-
|
|
1024
|
-
- Adding common cssClass for wrapper.
|
|
1025
|
-
|
|
1026
|
-
### MultiSelect
|
|
1027
|
-
|
|
1028
|
-
#### New Features
|
|
1029
|
-
|
|
1030
|
-
- Provided `Material2 outline layout` for multiselect.
|
|
1031
|
-
|
|
1032
|
-
## 17.3.14 (2019-10-03)
|
|
1033
|
-
|
|
1034
|
-
### AutoComplete
|
|
1035
|
-
|
|
1036
|
-
#### Bug Fixes
|
|
1037
|
-
|
|
1038
|
-
- `#248193` - Issue with "once autocomplete popup open is prevented by setting args.cancel as true in beforeOpen event then you can't remove the prevent a popup opening using beforeOpen event" has been resolved.
|
|
1039
|
-
|
|
1040
|
-
### MultiSelect
|
|
1041
|
-
|
|
1042
|
-
#### Bug Fixes
|
|
1043
|
-
|
|
1044
|
-
- `#248288` - Issue with "console error thrown when set the openOnClick property as false in checkbox mode" has been resolved.
|
|
1045
|
-
|
|
1046
|
-
## 17.2.49 (2019-09-04)
|
|
1047
|
-
|
|
1048
|
-
### MultiSelect
|
|
1049
|
-
|
|
1050
|
-
#### Bug Fixes
|
|
1051
|
-
|
|
1052
|
-
- `#245849` - Issue with "Dropdown popup moves down while initial value selection on popup" has been resolved.
|
|
1053
|
-
|
|
1054
|
-
## 17.2.46 (2019-08-22)
|
|
1055
|
-
|
|
1056
|
-
### ListBox
|
|
1057
|
-
|
|
1058
|
-
#### New Features
|
|
1059
|
-
|
|
1060
|
-
- `#237694` - provided maximum selection limit option for ListBox.
|
|
1061
|
-
|
|
1062
|
-
## 17.2.41 (2019-08-14)
|
|
1063
|
-
|
|
1064
|
-
### MultiSelect
|
|
1065
|
-
|
|
1066
|
-
#### Bug Fixes
|
|
1067
|
-
|
|
1068
|
-
- `#144756`- Issue with "custom value added to the list after args.cancel is set to true in custom value section event" has been resolved.
|
|
1069
|
-
|
|
1070
|
-
## 17.2.40 (2019-08-06)
|
|
1071
|
-
|
|
1072
|
-
### MultiSelect
|
|
1073
|
-
|
|
1074
|
-
#### Bug Fixes
|
|
1075
|
-
|
|
1076
|
-
- `#242599` - Now, filtering work properly when enabling the custom value property.
|
|
1077
|
-
|
|
1078
|
-
### ComboBox
|
|
1079
|
-
|
|
1080
|
-
#### New Features
|
|
1081
|
-
|
|
1082
|
-
- `#F146233` - Now, you can specify type of filter using `filterType` property.
|
|
1083
|
-
|
|
1084
|
-
### DropDownList
|
|
1085
|
-
|
|
1086
|
-
#### New Features
|
|
1087
|
-
|
|
1088
|
-
- `#F146233` - Now, you can specify type of filter using `filterType` property.
|
|
1089
|
-
|
|
1090
|
-
### MultiSelect
|
|
1091
|
-
|
|
1092
|
-
#### New Features
|
|
1093
|
-
|
|
1094
|
-
- `#F146233` - Now, you can specify type of filter using `filterType` property.
|
|
1095
|
-
|
|
1096
|
-
## 17.2.39 (2019-07-30)
|
|
1097
|
-
|
|
1098
|
-
### ListBox
|
|
1099
|
-
|
|
1100
|
-
#### Bug Fixes
|
|
1101
|
-
|
|
1102
|
-
- `#240597` - Dual ListBox causes an error when filtering is activated and disable the checkbox selection settings issue is fixed.
|
|
1103
|
-
|
|
1104
|
-
- `#240594` - Form submit occurs while click toolbar item issue is fixed.
|
|
1105
|
-
|
|
1106
|
-
## 17.2.36 (2019-07-24)
|
|
1107
|
-
|
|
1108
|
-
### MultiSelect
|
|
1109
|
-
|
|
1110
|
-
#### Bug Fixes
|
|
1111
|
-
|
|
1112
|
-
- `#241578` - Issue with “Checkbox selection is not updated properly in the popup list items when set filtering as false” has been resolved.
|
|
1113
|
-
|
|
1114
|
-
### AutoComplete
|
|
1115
|
-
|
|
1116
|
-
#### Bug Fixes
|
|
1117
|
-
|
|
1118
|
-
- `#F146110` - Now, Resolved the console error thrown when first character is type using `MinLength` property.
|
|
1119
|
-
|
|
1120
|
-
### DropDownList
|
|
1121
|
-
|
|
1122
|
-
#### Bug Fixes
|
|
1123
|
-
|
|
1124
|
-
- `#F146110` - Now, Resolved the console error thrown when first character is type using `MinLength` property.
|
|
1125
|
-
|
|
1126
|
-
## 17.2.34 (2019-07-11)
|
|
1127
|
-
|
|
1128
|
-
### ComboBox
|
|
1129
|
-
|
|
1130
|
-
#### Bug Fixes
|
|
1131
|
-
|
|
1132
|
-
- `#233488`, `#239802` - Issue with "throws error while set the field value as null" has been resolved.
|
|
1133
|
-
|
|
1134
|
-
### MultiSelect
|
|
1135
|
-
|
|
1136
|
-
#### Bug Fixes
|
|
1137
|
-
|
|
1138
|
-
- `#226512` - Now, SelectAll checkbox shows when more than one items present in the filtered list.
|
|
1139
|
-
|
|
1140
|
-
### DropDownList
|
|
1141
|
-
|
|
1142
|
-
#### Bug Fixes
|
|
1143
|
-
|
|
1144
|
-
- `#239351` - Now, Select event triggers when selecting the value through interaction.
|
|
1145
|
-
|
|
1146
|
-
- `#F145367` - Issue with "filtering is not working with item template" has been resolved.
|
|
1147
|
-
|
|
1148
|
-
### ListBox
|
|
1149
|
-
|
|
1150
|
-
#### Bug Fixes
|
|
1151
|
-
|
|
1152
|
-
- `#240594` - Form submit occurs while click toolbar item issue is fixed.
|
|
1153
|
-
|
|
1154
|
-
## 17.2.28-beta (2019-06-27)
|
|
1155
|
-
|
|
1156
|
-
### ListBox
|
|
1157
|
-
|
|
1158
|
-
#### New Features
|
|
1159
|
-
|
|
1160
|
-
- Checkbox position support provided.
|
|
1161
|
-
- Filter support provided.
|
|
1162
|
-
- #234507 - Provided support for drag and dropping the single list item when more than one list item is selected by setting `false` to `dragSelected` argument in `dragStart` event.
|
|
1163
|
-
|
|
1164
|
-
#### Bug Fixes
|
|
1165
|
-
|
|
1166
|
-
- #236715 - Drag and dropping the list item is not sorted when `sortOrder` enabled issue is fixed.
|
|
1167
|
-
|
|
1168
|
-
#### Breaking Changes
|
|
1169
|
-
|
|
1170
|
-
- Event `select` is removed instead `change` event is provided.
|
|
1171
|
-
|
|
1172
|
-
### DropDownList
|
|
1173
|
-
|
|
1174
|
-
#### Bug Fixes
|
|
1175
|
-
|
|
1176
|
-
- #235631 - Issue with "updating default value after form reset" has been resolved.
|
|
1177
|
-
|
|
1178
|
-
- #239136 - Now, you can change `allowFiltering` property value dynamically.
|
|
1179
|
-
|
|
1180
|
-
### MultiSelect
|
|
1181
|
-
|
|
1182
|
-
#### Bug Fixes
|
|
1183
|
-
|
|
1184
|
-
- #235699 - Change event not happening after the control has lost focus issue has been fixed.
|
|
1185
|
-
|
|
1186
|
-
#### New Features
|
|
1187
|
-
|
|
1188
|
-
- `#F142089`, `#225476`, `#231094`, `#234377` - Now, you can render grouping with checkbox using enableGroupCheckBox property.
|
|
1189
|
-
|
|
1190
|
-
## 17.1.49 (2019-05-29)
|
|
1191
|
-
|
|
1192
|
-
### MultiSelect
|
|
1193
|
-
|
|
1194
|
-
#### New Features
|
|
1195
|
-
|
|
1196
|
-
- #236816 - Provided method for `focusIn` and `focusOut`.
|
|
1197
|
-
|
|
1198
|
-
#### Bug Fixes
|
|
1199
|
-
|
|
1200
|
-
- #231920 - In IE browser, script error throws when calling getItems method has been fixed.
|
|
1201
|
-
|
|
1202
|
-
## 17.1.48 (2019-05-21)
|
|
1203
|
-
|
|
1204
|
-
### ListBox
|
|
1205
|
-
|
|
1206
|
-
#### New Features
|
|
1207
|
-
|
|
1208
|
-
- Provided change event for ListBox.
|
|
1209
|
-
|
|
1210
|
-
## 17.1.44 (2019-05-07)
|
|
1211
|
-
|
|
1212
|
-
### MultiSelect
|
|
1213
|
-
|
|
1214
|
-
#### Bug Fixes
|
|
1215
|
-
|
|
1216
|
-
- #235167 - Multiselect dropdown jump down when the `showDropDownIcon` is set to true issue has been resolved.
|
|
1217
|
-
|
|
1218
|
-
- #209393 - Change event not fired during tab key navigation issue has been resolved.
|
|
1219
|
-
|
|
1220
|
-
### DropDownList
|
|
1221
|
-
|
|
1222
|
-
#### Bug Fixes
|
|
1223
|
-
|
|
1224
|
-
- #234846 - The popup collision issue has been resolved while enable the filtering.
|
|
1225
|
-
|
|
1226
|
-
## 17.1.43 (2019-04-30)
|
|
1227
|
-
|
|
1228
|
-
### ComboBox
|
|
1229
|
-
|
|
1230
|
-
#### Bug Fixes
|
|
1231
|
-
|
|
1232
|
-
- #233483 - The List not generated properly while clear the value using clear button issue has been resolved.
|
|
1233
|
-
|
|
1234
|
-
- #234100 - The search not working on enabling read only in the control initialization issue has been resolved.
|
|
1235
|
-
|
|
1236
|
-
- #233137 - The combobox is not focused when click the tab key at single time issue has been resolved.
|
|
1237
|
-
|
|
1238
|
-
### DropDownList
|
|
1239
|
-
|
|
1240
|
-
#### Bug Fixes
|
|
1241
|
-
|
|
1242
|
-
- #231680 - The data source is observable using Async Pipe with pre select value not updated issue has been resolved.
|
|
1243
|
-
|
|
1244
|
-
- #230651 - Eval function security issue has been resolved.
|
|
1245
|
-
|
|
1246
|
-
## 17.1.42 (2019-04-23)
|
|
1247
|
-
|
|
1248
|
-
### MultiSelect
|
|
1249
|
-
|
|
1250
|
-
#### Bug Fixes
|
|
1251
|
-
|
|
1252
|
-
- #232673 - Issue with prevent the first value when clear value using clear button has been fixed.
|
|
1253
|
-
|
|
1254
|
-
- #233432 - The group template text not updated while enable the allow filtering issue has been fixed.
|
|
1255
|
-
|
|
1256
|
-
## 17.1.41 (2019-04-16)
|
|
1257
|
-
|
|
1258
|
-
### MultiSelect
|
|
1259
|
-
|
|
1260
|
-
#### Bug Fixes
|
|
1261
|
-
|
|
1262
|
-
- #232673 - Issue with browser freeze when clear value using clear button has been fixed.
|
|
1263
|
-
|
|
1264
|
-
- #231997 - Issue with duplicate placeholder on multiselect issue has been fixed.
|
|
1265
|
-
|
|
1266
|
-
- #232218 - The popup open downward when select the items after scroll the page issue has been resolved.
|
|
1267
|
-
|
|
1268
|
-
- #231920 - The Custom value with pre select value not updated when set empty data source issue has been resolved.
|
|
1269
|
-
|
|
1270
|
-
- F143612 - Dropdown icon disappeared when set the lengthy placeholder issue has been fixed.
|
|
1271
|
-
|
|
1272
|
-
### DropDownList
|
|
1273
|
-
|
|
1274
|
-
#### Bug Fixes
|
|
1275
|
-
|
|
1276
|
-
- #142944 - Item template not loaded, when change the datasource dynamically issue has been resolved.
|
|
1277
|
-
|
|
1278
|
-
### ComboBox
|
|
1279
|
-
|
|
1280
|
-
#### Bug Fixes
|
|
1281
|
-
|
|
1282
|
-
- #225254, #227938 - Template interpolated data not updated while filtering issue has been resolved.
|
|
1283
|
-
|
|
1284
|
-
## 17.1.40 (2019-04-09)
|
|
1285
|
-
|
|
1286
|
-
### ListBox
|
|
1287
|
-
|
|
1288
|
-
#### Bug Fixes
|
|
1289
|
-
|
|
1290
|
-
- Value property passed on form submit issue fixed.
|
|
1291
|
-
|
|
1292
|
-
### DropDownList
|
|
1293
|
-
|
|
1294
|
-
#### Bug Fixes
|
|
1295
|
-
|
|
1296
|
-
- Issue with value selection on disabled dropdown using incremental search has been fixed.
|
|
1297
|
-
|
|
1298
|
-
- Clear icon shown when change the value dynamically issue has been fixed.
|
|
1299
|
-
|
|
1300
|
-
### MultiSelect
|
|
1301
|
-
|
|
1302
|
-
#### Bug Fixes
|
|
1303
|
-
|
|
1304
|
-
- Placeholder is not updated properly when unselect all the value issue has been resolved.
|
|
1305
|
-
|
|
1306
|
-
## 17.1.38 (2019-03-29)
|
|
1307
|
-
|
|
1308
|
-
### ListBox
|
|
1309
|
-
|
|
1310
|
-
The ListBox is a graphical user interface component used to display a list of items. Users can select one or more items in the list using a checkbox or by keyboard selection. It supports sorting, grouping, reordering, and drag and drop of items. The available key features are:
|
|
1311
|
-
|
|
1312
|
-
- **Data binding**: Binds and accesses the list of items from local or server-side data source.
|
|
1313
|
-
|
|
1314
|
-
- **Dual ListBox**: Allows transferring and reordering the list item between two ListBoxes.
|
|
1315
|
-
|
|
1316
|
-
- **Drag and Drop**: Allows drag and drop the list item with the same/multiple ListBox.
|
|
1317
|
-
|
|
1318
|
-
- **Grouping**: Groups the logically related items under a single or specific category.
|
|
1319
|
-
|
|
1320
|
-
- **Templates**: Customizes the list items.
|
|
1321
|
-
|
|
1322
|
-
- **Sorting**: Sorts the list items in alphabetical order (either ascending or descending).
|
|
1323
|
-
|
|
1324
|
-
- **Accessibility**: Provided with built-in accessibility support that helps to access all the ListBox component features using the keyboard, screen readers, or other assistive technology devices.
|
|
1325
|
-
|
|
1326
|
-
### MultiSelect
|
|
1327
|
-
|
|
1328
|
-
#### Bug Fixes
|
|
1329
|
-
|
|
1330
|
-
- Placeholder is not updated properly when removed the value issue has been resolved.
|
|
1331
|
-
|
|
1332
|
-
## 17.1.32-beta (2019-03-13)
|
|
1333
|
-
|
|
1334
|
-
### DropDownList
|
|
1335
|
-
|
|
1336
|
-
#### Bug Fixes
|
|
1337
|
-
|
|
1338
|
-
- Issue with change event trigger multiple times when clear value using clear button has been fixed.
|
|
1339
|
-
|
|
1340
|
-
### MultiSelect
|
|
1341
|
-
|
|
1342
|
-
#### New Features
|
|
1343
|
-
|
|
1344
|
-
- Provided customized filtering support for checkbox mode also.
|
|
1345
|
-
|
|
1346
|
-
### AutoComplete
|
|
1347
|
-
|
|
1348
|
-
#### Bug Fixes
|
|
1349
|
-
|
|
1350
|
-
- Filtered value is not maintained while using model value issue has been resolved.
|
|
1351
|
-
|
|
1352
|
-
### ComboBox
|
|
1353
|
-
|
|
1354
|
-
#### Bug Fixes
|
|
1355
|
-
|
|
1356
|
-
- List's selection is not removed when remove a selected value using clear button issue has been resolved.
|
|
1357
|
-
|
|
1358
|
-
## 16.4.55 (2019-02-27)
|
|
1359
|
-
|
|
1360
|
-
### DropDownList
|
|
1361
|
-
|
|
1362
|
-
#### Bug Fixes
|
|
1363
|
-
|
|
1364
|
-
- Pre-select value is not selected when its not present in the list issue fixed.
|
|
1365
|
-
|
|
1366
|
-
- Reset text based initial value in form reset action behavior has been changed.
|
|
1367
|
-
|
|
1368
|
-
### AutoComplete
|
|
1369
|
-
|
|
1370
|
-
#### Bug Fixes
|
|
1371
|
-
|
|
1372
|
-
- Reset text based initial value in form reset action behavior has been changed.
|
|
1373
|
-
|
|
1374
|
-
### ComboBox
|
|
1375
|
-
|
|
1376
|
-
#### Bug Fixes
|
|
1377
|
-
|
|
1378
|
-
- Reset text based initial value in form reset action behavior has been changed.
|
|
1379
|
-
|
|
1380
|
-
### MultiSelect
|
|
1381
|
-
|
|
1382
|
-
#### Bug Fixes
|
|
1383
|
-
|
|
1384
|
-
- List selection throws exception while using quotes within string data issue has been resolved.
|
|
1385
|
-
|
|
1386
|
-
- Select all operation's performance issue has been resolved.
|
|
1387
|
-
|
|
1388
|
-
## 16.4.54 (2019-02-19)
|
|
1389
|
-
|
|
1390
|
-
### DropDownList
|
|
1391
|
-
|
|
1392
|
-
#### Bug Fixes
|
|
1393
|
-
|
|
1394
|
-
- When page scroll, grouping template is hiding issue has been resolved.
|
|
1395
|
-
|
|
1396
|
-
- Reset the initial value in form reset action behavior has been changed.
|
|
1397
|
-
|
|
1398
|
-
### AutoComplete
|
|
1399
|
-
|
|
1400
|
-
#### Bug Fixes
|
|
1401
|
-
|
|
1402
|
-
- Reset the initial value in form reset action behavior has been changed.
|
|
1403
|
-
|
|
1404
|
-
### ComboBox
|
|
1405
|
-
|
|
1406
|
-
#### Bug Fixes
|
|
1407
|
-
|
|
1408
|
-
- Reset the initial value in form reset action behavior has been changed.
|
|
1409
|
-
|
|
1410
|
-
### MultiSelect
|
|
1411
|
-
|
|
1412
|
-
#### Bug Fixes
|
|
1413
|
-
|
|
1414
|
-
- Now, you can enter special characters inside MultiSelect using virtual keyboard.
|
|
1415
|
-
|
|
1416
|
-
- Reset the initial value in form reset action behavior has been changed.
|
|
1417
|
-
|
|
1418
|
-
## 16.4.53 (2019-02-13)
|
|
1419
|
-
|
|
1420
|
-
### DropDownList
|
|
1421
|
-
|
|
1422
|
-
- ItemData parameter supports `object` collection in select and change event.
|
|
1423
|
-
|
|
1424
|
-
- Filtering is not working when rendered control by using select element issue has been resolved.
|
|
1425
|
-
|
|
1426
|
-
### MultiSelect
|
|
1427
|
-
|
|
1428
|
-
#### Bug Fixes
|
|
1429
|
-
|
|
1430
|
-
- Lengthy placeholder breaks UI issue has been resolved.
|
|
1431
|
-
|
|
1432
|
-
- Values are not cleared in mobile devices issue has been resolved.
|
|
1433
|
-
|
|
1434
|
-
- Values are not selected based on selected attribute in select element rendering issue has been resolved.
|
|
1435
|
-
|
|
1436
|
-
## 16.4.52 (2019-02-05)
|
|
1437
|
-
|
|
1438
|
-
### ComboBox
|
|
1439
|
-
|
|
1440
|
-
#### Bug Fixes
|
|
1441
|
-
|
|
1442
|
-
- The model value is not updated by selecting a value using tab key with autofill combination issue has been resolved.
|
|
1443
|
-
|
|
1444
|
-
### MultiSelect
|
|
1445
|
-
|
|
1446
|
-
#### Bug Fixes
|
|
1447
|
-
|
|
1448
|
-
- Blur event prevents other actions issue has been resolved.
|
|
1449
|
-
|
|
1450
|
-
## 16.4.48 (2019-01-22)
|
|
1451
|
-
|
|
1452
|
-
### AutoComplete
|
|
1453
|
-
|
|
1454
|
-
#### Bug Fixes
|
|
1455
|
-
|
|
1456
|
-
- Custom value is not maintain after reload the data issue has been resolved.
|
|
1457
|
-
|
|
1458
|
-
### MultiSelect
|
|
1459
|
-
|
|
1460
|
-
#### Bug Fixes
|
|
1461
|
-
|
|
1462
|
-
- `en-US` locale JSON file not generated issue has been resolved.
|
|
1463
|
-
|
|
1464
|
-
## 16.4.47 (2019-01-16)
|
|
1465
|
-
|
|
1466
|
-
### MultiSelect
|
|
1467
|
-
|
|
1468
|
-
#### Bug Fixes
|
|
1469
|
-
|
|
1470
|
-
- server side validation is not working issue has been resolved.
|
|
1471
|
-
|
|
1472
|
-
## 16.4.46 (2019-01-08)
|
|
1473
|
-
|
|
1474
|
-
### MultiSelect
|
|
1475
|
-
|
|
1476
|
-
#### Bug Fixes
|
|
1477
|
-
|
|
1478
|
-
- Value is updated in reverse while using select all option in checkbox selection issue has been resolved.
|
|
1479
|
-
|
|
1480
|
-
### ComboBox
|
|
1481
|
-
|
|
1482
|
-
#### Bug Fixes
|
|
1483
|
-
|
|
1484
|
-
- Change event is not trigger when focus out the control using tab key issue has been resolved.
|
|
1485
|
-
|
|
1486
|
-
## 16.4.44 (2018-12-24)
|
|
1487
|
-
|
|
1488
|
-
### MultiSelect
|
|
1489
|
-
|
|
1490
|
-
#### Bug Fixes
|
|
1491
|
-
|
|
1492
|
-
- Item template with checkbox combination is not working issue has been resolved.
|
|
1493
|
-
|
|
1494
|
-
- Value update with checkbox selection issue in reactive form has been resolved.
|
|
1495
|
-
|
|
1496
|
-
## 16.3.34 (2018-11-21)
|
|
1497
|
-
|
|
1498
|
-
### MultiSelect
|
|
1499
|
-
|
|
1500
|
-
#### Bug Fixes
|
|
1501
|
-
|
|
1502
|
-
- Checkbox's selection is not removed when uncheck the `selectAll` checkbox issue has been resolved.
|
|
1503
|
-
|
|
1504
|
-
## 16.3.33 (2018-11-20)
|
|
1505
|
-
|
|
1506
|
-
### DropDownList
|
|
1507
|
-
|
|
1508
|
-
#### Bug Fixes
|
|
1509
|
-
|
|
1510
|
-
- DropDownList locale added in `config Json` file.
|
|
1511
|
-
|
|
1512
|
-
## 16.3.32 (2018-11-13)
|
|
1513
|
-
|
|
1514
|
-
### DropDownList
|
|
1515
|
-
|
|
1516
|
-
#### Bug Fixes
|
|
1517
|
-
|
|
1518
|
-
- Data related attributes are added to input element instead of select element has been fixed.
|
|
1519
|
-
|
|
1520
|
-
- Console error thrown as maximum call stack when set the empty `dataSource` that issue has been fixed.
|
|
1521
|
-
|
|
1522
|
-
### MultiSelect
|
|
1523
|
-
|
|
1524
|
-
#### Bug Fixes
|
|
1525
|
-
|
|
1526
|
-
- Original event argument does not get in `selectedAll` event argument that issue has been fixed.
|
|
1527
|
-
|
|
1528
|
-
### ComboBox
|
|
1529
|
-
|
|
1530
|
-
#### Bug Fixes
|
|
1531
|
-
|
|
1532
|
-
- ComboBox `focus` event argument issue has been resolved.
|
|
1533
|
-
|
|
1534
|
-
## 16.3.29 (2018-10-31)
|
|
1535
|
-
|
|
1536
|
-
### MultiSelect
|
|
1537
|
-
|
|
1538
|
-
#### Bug Fixes
|
|
1539
|
-
|
|
1540
|
-
- MultiSelect filtering is shown incorrect result when using remote datasource issue has been resolved.
|
|
1541
|
-
|
|
1542
|
-
### AutoComplete
|
|
1543
|
-
|
|
1544
|
-
#### Bug Fixes
|
|
1545
|
-
|
|
1546
|
-
- AutoComplete `minLength` property is not perform when use custom filtering event has been resolved.
|
|
1547
|
-
|
|
1548
|
-
## 16.3.27 (2018-10-23)
|
|
1549
|
-
|
|
1550
|
-
### MultiSelect
|
|
1551
|
-
|
|
1552
|
-
#### Bug Fixes
|
|
1553
|
-
|
|
1554
|
-
- ngModel is not updated when select all value using SelectAll option has been fixed.
|
|
1555
|
-
|
|
1556
|
-
### DropDownList
|
|
1557
|
-
|
|
1558
|
-
#### Bug Fixes
|
|
1559
|
-
|
|
1560
|
-
- null exception handled in getItems method.
|
|
1561
|
-
|
|
1562
|
-
## 16.3.25 (2018-10-15)
|
|
1563
|
-
|
|
1564
|
-
### MultiSelect
|
|
1565
|
-
|
|
1566
|
-
#### Bug Fixes
|
|
1567
|
-
|
|
1568
|
-
- Duplicate values are listed while fetching data with UrlAdaptor when `allowCustom` value is set to true, that issue has been fixed.
|
|
1569
|
-
|
|
1570
|
-
### DropDownList
|
|
1571
|
-
|
|
1572
|
-
#### Bug Fixes
|
|
1573
|
-
|
|
1574
|
-
- DropDownList `valueTemplate` selected value is changed now, while changing data source.
|
|
1575
|
-
|
|
1576
|
-
### ComboBox
|
|
1577
|
-
|
|
1578
|
-
#### Bug Fixes
|
|
1579
|
-
|
|
1580
|
-
- ComboBox `readonly` enabled clear button is shown issue has been resolved.
|
|
1581
|
-
|
|
1582
|
-
## 16.3.23 (2018-10-03)
|
|
1583
|
-
|
|
1584
|
-
### MultiSelect
|
|
1585
|
-
|
|
1586
|
-
#### Bug Fixes
|
|
1587
|
-
|
|
1588
|
-
- MultiSelect values are cleared after performing add operation in Grid, that issue has been fixed.
|
|
1589
|
-
|
|
1590
|
-
- Item disappears from popup list after pressing the backspace key, that issue has been fixed.
|
|
1591
|
-
|
|
1592
|
-
### DropDownList
|
|
1593
|
-
|
|
1594
|
-
#### Bug Fixes
|
|
1595
|
-
|
|
1596
|
-
- DropDownList `ItemTemplate` with `addItem` method template issue has been resolved.
|
|
1597
|
-
|
|
1598
|
-
## 16.3.17 (2018-09-12)
|
|
1599
|
-
|
|
1600
|
-
### DropDownList
|
|
1601
|
-
|
|
1602
|
-
#### Bug Fixes
|
|
1603
|
-
|
|
1604
|
-
- Restricted multiple request when no data returned from server issue has been resolved.
|
|
1605
|
-
|
|
1606
|
-
### MultiSelect
|
|
1607
|
-
|
|
1608
|
-
#### Bug Fixes
|
|
1609
|
-
|
|
1610
|
-
- Change event is now triggered for MultiSelect components, when focused out.
|
|
1611
|
-
|
|
1612
|
-
#### Breaking Changes
|
|
1613
|
-
|
|
1614
|
-
- Renamed the `selectAll` event argument `IsChecked` to `isChecked`.
|
|
1615
|
-
- Renamed the `selectAll` event argument `e` to `event`.
|
|
1616
|
-
|
|
1617
|
-
## 16.2.49 (2018-08-21)
|
|
1618
|
-
|
|
1619
|
-
### MultiSelect
|
|
1620
|
-
|
|
1621
|
-
#### Bug Fixes
|
|
1622
|
-
|
|
1623
|
-
- View encapsulation support given for checkbox selection.
|
|
1624
|
-
- Cleared values are not added back to MultiSelect popup issue has been resolved.
|
|
1625
|
-
- View encapsulation support given for spinner element.
|
|
1626
|
-
|
|
1627
|
-
### DropDownList
|
|
1628
|
-
|
|
1629
|
-
#### Bug Fixes
|
|
1630
|
-
|
|
1631
|
-
- View encapsulation support given for spinner element.
|
|
1632
|
-
|
|
1633
|
-
### ComboBox
|
|
1634
|
-
|
|
1635
|
-
#### Bug Fixes
|
|
1636
|
-
|
|
1637
|
-
- View encapsulation support given for spinner element.
|
|
1638
|
-
|
|
1639
|
-
## 16.2.48 (2018-08-14)
|
|
1640
|
-
|
|
1641
|
-
### MultiSelect
|
|
1642
|
-
|
|
1643
|
-
#### Bug Fixes
|
|
1644
|
-
|
|
1645
|
-
- Improved the MultiSelect performance in IE11 browser.
|
|
1646
|
-
|
|
1647
|
-
### DropDownList
|
|
1648
|
-
|
|
1649
|
-
#### Bug Fixes
|
|
1650
|
-
|
|
1651
|
-
- DropDownList `cssClass` updated dynamically changes issue has been resolved.
|
|
1652
|
-
- create input method addition argument added.
|
|
1653
|
-
|
|
1654
|
-
### AutoComplete
|
|
1655
|
-
|
|
1656
|
-
#### Bug Fixes
|
|
1657
|
-
|
|
1658
|
-
- create input method addition argument added.
|
|
1659
|
-
|
|
1660
|
-
### ComboBox
|
|
1661
|
-
|
|
1662
|
-
#### Bug Fixes
|
|
1663
|
-
|
|
1664
|
-
- create input method addition argument added.
|
|
1665
|
-
|
|
1666
|
-
### MultiSelect
|
|
1667
|
-
|
|
1668
|
-
#### Bug Fixes
|
|
1669
|
-
|
|
1670
|
-
- create input method addition argument added.
|
|
1671
|
-
|
|
1672
|
-
## 16.2.47 (2018-08-07)
|
|
1673
|
-
|
|
1674
|
-
### DropDownList
|
|
1675
|
-
|
|
1676
|
-
#### Bug Fixes
|
|
1677
|
-
|
|
1678
|
-
- Provided view encapsulation support.
|
|
1679
|
-
|
|
1680
|
-
### MultiSelect
|
|
1681
|
-
|
|
1682
|
-
#### Bug Fixes
|
|
1683
|
-
|
|
1684
|
-
- Provided view encapsulation support.
|
|
1685
|
-
|
|
1686
|
-
### AutoComplete
|
|
1687
|
-
|
|
1688
|
-
#### Bug Fixes
|
|
1689
|
-
|
|
1690
|
-
- Provided view encapsulation support.
|
|
1691
|
-
|
|
1692
|
-
### ComboBox
|
|
1693
|
-
|
|
1694
|
-
#### Bug Fixes
|
|
1695
|
-
|
|
1696
|
-
- Provided view encapsulation support.
|
|
1697
|
-
|
|
1698
|
-
## 16.2.46 (2018-07-30)
|
|
1699
|
-
|
|
1700
|
-
### DropDownList
|
|
1701
|
-
|
|
1702
|
-
#### Bug Fixes
|
|
1703
|
-
|
|
1704
|
-
- We have provided public methods spinner show and hides.
|
|
1705
|
-
|
|
1706
|
-
### MultiSelect
|
|
1707
|
-
|
|
1708
|
-
#### Bug Fixes
|
|
1709
|
-
|
|
1710
|
-
- Pre-selected item disappears from popup list when removed selected items in clear button issue has been resolved.
|
|
1711
|
-
- We have provided public methods spinner show and hides.
|
|
1712
|
-
|
|
1713
|
-
### AutoComplete
|
|
1714
|
-
|
|
1715
|
-
- We have provided public methods spinner show and hides.
|
|
1716
|
-
|
|
1717
|
-
### ComboBox
|
|
1718
|
-
|
|
1719
|
-
- ComboBox filtering update data method field argument issue has been resolved.
|
|
1720
|
-
- We have provided public methods spinner show and hides.
|
|
1721
|
-
|
|
1722
|
-
## 16.2.45 (2018-07-17)
|
|
1723
|
-
|
|
1724
|
-
### DropDownList
|
|
1725
|
-
|
|
1726
|
-
#### Bug Fixes
|
|
1727
|
-
|
|
1728
|
-
- DropDownList same value selection, value not cleared issue has been resolved.
|
|
1729
|
-
- DropDownList `scss` variable override issue has been resolved.
|
|
1730
|
-
|
|
1731
|
-
### MultiSelect
|
|
1732
|
-
|
|
1733
|
-
#### Bug Fixes
|
|
1734
|
-
|
|
1735
|
-
- Multiselect clear button issue has been resolved.
|
|
1736
|
-
- Multiselect restore value not maintained in `IE` issue has been resolved.
|
|
1737
|
-
- Multiselect popup not open when update a data via update data.
|
|
1738
|
-
|
|
1739
|
-
## 16.2.43 (2018-07-03)
|
|
1740
|
-
|
|
1741
|
-
### MultiSelect
|
|
1742
|
-
|
|
1743
|
-
#### Bug Fixes
|
|
1744
|
-
|
|
1745
|
-
- Multiselect pre selected value not updated issue has been resolved.
|
|
1746
|
-
|
|
1747
|
-
## 16.2.42 (2018-06-27)
|
|
1748
|
-
|
|
1749
|
-
### Multiselect
|
|
1750
|
-
|
|
1751
|
-
#### Bug Fixes
|
|
1752
|
-
|
|
1753
|
-
- Provided support for selected all event.
|
|
1754
|
-
- Value is not selected when ending with space.
|
|
1755
|
-
|
|
1756
|
-
## 16.2.41 (2018-06-25)
|
|
1757
|
-
|
|
1758
|
-
### AutoComplete
|
|
1759
|
-
|
|
1760
|
-
#### Bug Fixes
|
|
1761
|
-
|
|
1762
|
-
- Html elements are shown during filtering when highlight property is set to true.
|
|
1763
|
-
|
|
1764
|
-
### DropDownList
|
|
1765
|
-
|
|
1766
|
-
#### Bug Fixes
|
|
1767
|
-
|
|
1768
|
-
- Provided support for before open event.
|
|
1769
|
-
|
|
1770
|
-
### ComboBox
|
|
1771
|
-
|
|
1772
|
-
#### Bug Fixes
|
|
1773
|
-
|
|
1774
|
-
- Popup items is not same as initially after filtering in combobox.
|
|
1775
|
-
|
|
1776
|
-
### MultiSelect
|
|
1777
|
-
|
|
1778
|
-
#### Bug Fixes
|
|
1779
|
-
|
|
1780
|
-
- Data is not repopulated when selecting and removing all items from Multiselect.
|
|
1781
|
-
- Multiselect is not focused when tab key is pressed if it already focused in the filterbar.
|
|
1782
|
-
|
|
1783
|
-
## 16.1.46 (2018-05-29)
|
|
1784
|
-
|
|
1785
|
-
### MultiSelect
|
|
1786
|
-
|
|
1787
|
-
#### Bug Fixes
|
|
1788
|
-
|
|
1789
|
-
- Changed control height for MultiSelect component in Material theme to match other dropdown components.
|
|
1790
|
-
|
|
1791
|
-
## 16.1.45 (2018-05-23)
|
|
1792
|
-
|
|
1793
|
-
### MultiSelect
|
|
1794
|
-
|
|
1795
|
-
#### Bug Fixes
|
|
1796
|
-
|
|
1797
|
-
- Allow to set the value in MultiSelect when it is re-rendered.
|
|
1798
|
-
|
|
1799
|
-
## 16.1.42 (2018-05-15)
|
|
1800
|
-
|
|
1801
|
-
### AutoComplete
|
|
1802
|
-
|
|
1803
|
-
#### Bug Fixes
|
|
1804
|
-
|
|
1805
|
-
- The getDataByValue method is not working properly in Autocomplete's issue has been fixed.
|
|
1806
|
-
|
|
1807
|
-
### DropDownList
|
|
1808
|
-
|
|
1809
|
-
#### Bug Fixes
|
|
1810
|
-
|
|
1811
|
-
- Value property set through the model is now maintained, even after changing the data.
|
|
1812
|
-
- Change event is now triggered for DropDown components, when `showClearButton` is clicked.
|
|
1813
|
-
|
|
1814
|
-
## 16.1.40 (2018-05-08)
|
|
1815
|
-
|
|
1816
|
-
### ComboBox
|
|
1817
|
-
|
|
1818
|
-
#### Bug Fixes
|
|
1819
|
-
|
|
1820
|
-
- Prevented the native HTML select and change events in angular.
|
|
1821
|
-
|
|
1822
|
-
### DropDownList
|
|
1823
|
-
|
|
1824
|
-
#### Bug Fixes
|
|
1825
|
-
|
|
1826
|
-
- Prevented the validation message from triggering on components initial render.
|
|
1827
|
-
- Added support for HTML autofocus attribute in DropDown components.
|
|
1828
|
-
|
|
1829
|
-
### MultiSelect
|
|
1830
|
-
|
|
1831
|
-
#### Bug Fixes
|
|
1832
|
-
|
|
1833
|
-
- MultiSelect component's varying selection behaviour for keyboard and mouse event, has been fixed.
|
|
1834
|
-
|
|
1835
|
-
## 16.1.38 (2018-05-02)
|
|
1836
|
-
|
|
1837
|
-
### AutoComplete
|
|
1838
|
-
|
|
1839
|
-
#### Bug Fixes
|
|
1840
|
-
|
|
1841
|
-
- The issue, Value property in Autocomplete is not properly updated in two way binding after the initial load has been fixed.
|
|
1842
|
-
- The issue, Autocomplete displays the suggestions list even if the focus is lost for related component, has been fixed.
|
|
1843
|
-
|
|
1844
|
-
### MultiSelect
|
|
1845
|
-
|
|
1846
|
-
#### Bug Fixes
|
|
1847
|
-
|
|
1848
|
-
- The issue, MultiSelect component is not updating the popup correctly during the initial time, has been fixed.
|
|
1849
|
-
|
|
1850
|
-
## 16.1.35 (2018-04-17)
|
|
1851
|
-
|
|
1852
|
-
### AutoComplete
|
|
1853
|
-
|
|
1854
|
-
#### Bug Fixes
|
|
1855
|
-
|
|
1856
|
-
- The issue, Value is not updated correctly when the words in the suggestion list contains white spaces has been fixed.
|
|
1857
|
-
|
|
1858
|
-
### MultiSelect
|
|
1859
|
-
|
|
1860
|
-
#### New Features
|
|
1861
|
-
|
|
1862
|
-
- Float Label support has been given for MultiSelect
|
|
1863
|
-
|
|
1864
|
-
#### Bug Fixes
|
|
1865
|
-
|
|
1866
|
-
- custom value support has been given in MultiSelect when the filtering is enabled instead of 'no records found' template.
|
|
1867
|
-
|
|
1868
|
-
- The issue, 'Input is rendered again on typing while resetting value from null with remote data and custom value as true.' has been fixed.
|
|
1869
|
-
|
|
1870
|
-
- The issue, 'Enable persistence is not working properly when all the items in the list are selected.' has been fixed.
|
|
1871
|
-
|
|
1872
|
-
## 16.1.34 (2018-04-10)
|
|
1873
|
-
|
|
1874
|
-
### AutoComplete
|
|
1875
|
-
|
|
1876
|
-
#### Bug Fixes
|
|
1877
|
-
|
|
1878
|
-
- The issue, Value is not updated correctly when diacritics words are used in AutoComplete has been fixed.
|
|
1879
|
-
|
|
1880
|
-
## 16.1.33 (2018-04-03)
|
|
1881
|
-
|
|
1882
|
-
### MultiSelect
|
|
1883
|
-
|
|
1884
|
-
#### Bug Fixes
|
|
1885
|
-
|
|
1886
|
-
- Chip width is longer than the input wrapper when the custom longer text selected, issue has been fixed.
|
|
1887
|
-
|
|
1888
|
-
## 16.1.30 (2018-03-20)
|
|
1889
|
-
|
|
1890
|
-
### MultiSelect
|
|
1891
|
-
|
|
1892
|
-
#### Bug Fixes
|
|
1893
|
-
|
|
1894
|
-
- custom value maintained while disabled `closePopupOnSelect`, this issue has been fixed.
|
|
1895
|
-
|
|
1896
|
-
### DropDownList
|
|
1897
|
-
|
|
1898
|
-
#### Bug Fixes
|
|
1899
|
-
|
|
1900
|
-
- Dynamic value change support for `showClearButton`.
|
|
1901
|
-
|
|
1902
|
-
## 16.1.29 (2018-03-13)
|
|
1903
|
-
|
|
1904
|
-
### MultiSelect
|
|
1905
|
-
|
|
1906
|
-
#### Bug Fixes
|
|
1907
|
-
|
|
1908
|
-
- Change event not trigger while remove chip in keyboard, this issue has been fixed.
|
|
1909
|
-
|
|
1910
|
-
### AutoComplete
|
|
1911
|
-
|
|
1912
|
-
#### Bug Fixes
|
|
1913
|
-
|
|
1914
|
-
- Initial value not set while using remote data in autocomplete issue has been fixed.
|
|
1915
|
-
|
|
1916
|
-
## 16.1.28 (2018-03-09)
|
|
1917
|
-
|
|
1918
|
-
### MultiSelect
|
|
1919
|
-
|
|
1920
|
-
#### Bug Fixes
|
|
1921
|
-
|
|
1922
|
-
- Text property not working properly while selected text, this issue has been fixed.
|
|
1923
|
-
|
|
1924
|
-
### DropDownList
|
|
1925
|
-
|
|
1926
|
-
#### Bug Fixes
|
|
1927
|
-
|
|
1928
|
-
- Filtering with Template issue has been fixed in DropDownList and ComboBox.
|
|
1929
|
-
|
|
1930
|
-
### ComboBox
|
|
1931
|
-
|
|
1932
|
-
#### Bug Fixes
|
|
1933
|
-
|
|
1934
|
-
- Filtering with Template issue has been fixed in DropDownList and ComboBox.
|
|
1935
|
-
|
|
1936
|
-
## 16.1.24 (2018-02-22)
|
|
1937
|
-
|
|
1938
|
-
### AutoComplete
|
|
1939
|
-
|
|
1940
|
-
#### Breaking Changes
|
|
1941
|
-
|
|
1942
|
-
- Changed the filtering event argument types to `FilteringEventArgs`.
|
|
1943
|
-
|
|
1944
|
-
### Common
|
|
1945
|
-
|
|
1946
|
-
#### Breaking Changes
|
|
1947
|
-
|
|
1948
|
-
- Locale key changed from `dropdownlist` to `dropdowns`.
|
|
1949
|
-
|
|
1950
|
-
- Changed the fields property type as `FieldSettingsModel`.
|
|
1951
|
-
|
|
1952
|
-
- Changed the Angular component selector, component name prefix with `ejs` e.g : `ejs-dropdownlist`.
|
|
1953
|
-
|
|
1954
|
-
#### New Features
|
|
1955
|
-
|
|
1956
|
-
- Given in-built filtering support without using `filtering` event.
|
|
1957
|
-
|
|
1958
|
-
- Diacritics filtering works on enabling the `ignoreAccent`.
|
|
1959
|
-
|
|
1960
|
-
- Provided the `zIndex` property to set custom `zIndex` value.
|
|
1961
|
-
|
|
1962
|
-
- High contrast theme support.
|
|
1963
|
-
|
|
1964
|
-
### MultiSelect
|
|
1965
|
-
|
|
1966
|
-
#### New Features
|
|
1967
|
-
|
|
1968
|
-
- CheckBox support.
|
|
1969
|
-
|
|
1970
|
-
- Prevent the Popup open on component click while `openOnClick` property set as false.
|
|
1971
|
-
|
|
1972
|
-
- Provided `chipSelect` event for chip selection action.
|
|
1973
|
-
|
|
1974
|
-
#### Breaking Changes
|
|
1975
|
-
|
|
1976
|
-
- Pascal casing change to mode property values (`Default`, `Box`, `Delimiter`, `CheckBox`).
|
|
1977
|
-
|
|
1978
|
-
- Changed the `maximumSelectionLength` behaviour.
|
|
1979
|
-
|
|
1980
|
-
#### Bug Fixes
|
|
1981
|
-
|
|
1982
|
-
- Value preselect not working in remote data, this issue has been fixed.
|
|
1983
|
-
|
|
1984
|
-
### DropDownList
|
|
1985
|
-
|
|
1986
|
-
#### Bug Fixes
|
|
1987
|
-
|
|
1988
|
-
- Console error thrown while navigating the angular routing in DropDownList change event, this issue has been fixed.
|
|
1989
|
-
|
|
1990
|
-
## 15.4.27-preview (2018-01-30)
|
|
1991
|
-
|
|
1992
|
-
### DropDownList
|
|
1993
|
-
|
|
1994
|
-
#### Bug Fixes
|
|
1995
|
-
|
|
1996
|
-
- DropDownList value property gets as an object if selected value as 0, this issue has been fixed.
|
|
1997
|
-
|
|
1998
|
-
## 15.4.26-preview (2018-01-23)
|
|
1999
|
-
|
|
2000
|
-
### AutoComplete
|
|
2001
|
-
|
|
2002
|
-
#### Bug Fixes
|
|
2003
|
-
|
|
2004
|
-
- The Change event argument `isInteraction` is returned properly when clear button is clicked.
|
|
2005
|
-
|
|
2006
|
-
### DropDownList
|
|
2007
|
-
|
|
2008
|
-
#### Bug Fixes
|
|
2009
|
-
|
|
2010
|
-
- Clear button is not visible, this issue has been fixed.
|
|
2011
|
-
|
|
2012
|
-
- Angular reactive form resetting not worked in DropDownList component, this issue has been fixed.
|
|
2013
|
-
|
|
2014
|
-
### MultiSelect
|
|
2015
|
-
|
|
2016
|
-
#### Bug Fixes
|
|
2017
|
-
|
|
2018
|
-
- Popup does not open while component render with empty data source, this issue has been fixed.
|
|
2019
|
-
|
|
2020
|
-
## 15.4.24-preview (2018-01-10)
|
|
2021
|
-
|
|
2022
|
-
### MultiSelect
|
|
2023
|
-
|
|
2024
|
-
#### Breaking Changes
|
|
2025
|
-
|
|
2026
|
-
- Changed the default value of `hideSelectedItems` property as true.
|
|
2027
|
-
|
|
2028
|
-
#### Bug Fixes
|
|
2029
|
-
|
|
2030
|
-
- Custom value dose not allow while component render with empty data source, this issue has been fixed.
|
|
2031
|
-
|
|
2032
|
-
## 15.4.23-preview (2017-12-27)
|
|
2033
|
-
|
|
2034
|
-
### Common
|
|
2035
|
-
|
|
2036
|
-
#### New Features
|
|
2037
|
-
|
|
2038
|
-
- Added typing file for ES5 global scripts (`dist/global/index.d.ts`).
|
|
2039
|
-
|
|
2040
|
-
#### Breaking Changes
|
|
2041
|
-
|
|
2042
|
-
- Modified the module bundle file name for ES6 bundling.
|
|
2043
|
-
|
|
2044
|
-
### DropDownList
|
|
2045
|
-
|
|
2046
|
-
#### Bug Fixes
|
|
2047
|
-
|
|
2048
|
-
- Space key not allowed in DropDownList filtering, this issue has been fixed.
|
|
2049
|
-
|
|
2050
|
-
### MultiSelect
|
|
2051
|
-
|
|
2052
|
-
#### Bug Fixes
|
|
2053
|
-
|
|
2054
|
-
- Popup repositions not worked while scroll on the fixed element, this has been fixed.
|
|
2055
|
-
|
|
2056
|
-
### DropDownList
|
|
2057
|
-
|
|
2058
|
-
#### Bug Fixes
|
|
2059
|
-
|
|
2060
|
-
- Popup repositions not worked while scroll on the fixed element, this has been fixed.
|
|
2061
|
-
|
|
2062
|
-
### ComboBox
|
|
2063
|
-
|
|
2064
|
-
#### Bug Fixes
|
|
2065
|
-
|
|
2066
|
-
- Popup repositions not worked while scroll on the fixed element, this has been fixed.
|
|
2067
|
-
|
|
2068
|
-
### AutoComplete
|
|
2069
|
-
|
|
2070
|
-
#### Bug Fixes
|
|
2071
|
-
|
|
2072
|
-
- Popup repositions not worked while scroll on the fixed element, this has been fixed.
|
|
2073
|
-
|
|
2074
|
-
## 15.4.21-preview (2017-12-08)
|
|
2075
|
-
|
|
2076
|
-
### MultiSelect
|
|
2077
|
-
|
|
2078
|
-
#### Breaking Changes
|
|
2079
|
-
|
|
2080
|
-
- Home and End key behaviour changes.
|
|
2081
|
-
|
|
2082
|
-
### AutoComplete
|
|
2083
|
-
|
|
2084
|
-
#### Breaking Changes
|
|
2085
|
-
|
|
2086
|
-
- Home and End key behaviour changes.
|
|
2087
|
-
|
|
2088
|
-
### ComboBox
|
|
2089
|
-
|
|
2090
|
-
#### Breaking Changes
|
|
2091
|
-
|
|
2092
|
-
- Home and End key behaviour changes.
|
|
2093
|
-
|
|
2094
|
-
### MultiSelect
|
|
2095
|
-
|
|
2096
|
-
#### Bug Fixes
|
|
2097
|
-
|
|
2098
|
-
- Popup left and right collision issue fixed.
|
|
2099
|
-
|
|
2100
|
-
- MultiSelect custom value with template issue fixed.
|
|
2101
|
-
|
|
2102
|
-
## 15.4.20-preview (2017-12-01)
|
|
2103
|
-
|
|
2104
|
-
### Common
|
|
2105
|
-
|
|
2106
|
-
#### New Features
|
|
2107
|
-
|
|
2108
|
-
- Upgraded TypeScript version to 2.6.2.
|
|
2109
|
-
|
|
2110
|
-
### DropDownList
|
|
2111
|
-
|
|
2112
|
-
#### Bug Fixes
|
|
2113
|
-
|
|
2114
|
-
- DropDownList component value cleared while change the value through react setState method issue fixed.
|
|
2115
|
-
|
|
2116
|
-
- Empty string value not selected in DropDownList issue fixed.
|
|
2117
|
-
|
|
2118
|
-
## 15.4.19-preview (2017-11-23)
|
|
2119
|
-
|
|
2120
|
-
### AutoComplete
|
|
2121
|
-
|
|
2122
|
-
#### Bug Fixes
|
|
2123
|
-
|
|
2124
|
-
- When we Change the data source the value is empty issue fixed.
|
|
2125
|
-
|
|
2126
|
-
### DropDownList
|
|
2127
|
-
|
|
2128
|
-
#### Bug Fixes
|
|
2129
|
-
|
|
2130
|
-
- Expected is 'Object' instead of 'object' issue fixed.
|
|
2131
|
-
|
|
2132
|
-
## 15.4.17-preview (2017-11-13)
|
|
2133
|
-
|
|
2134
|
-
### MultiSelect
|
|
2135
|
-
|
|
2136
|
-
MultiSelect component contains a list of predefined values from which a multiple value can be chosen. The functionality of MultiSelect resembles the SELECT form element of HTML. The available key features are
|
|
2137
|
-
|
|
2138
|
-
- **Data binding** - Allows to bind and access the list of items from the local or server-side data source.
|
|
2139
|
-
|
|
2140
|
-
- **Grouping** - Supports grouping the logically related items under single or specific category.
|
|
2141
|
-
|
|
2142
|
-
- **Templates** - Allows customizing the list items, selected value, header, footer, category group header, and no records content.
|
|
2143
|
-
|
|
2144
|
-
- **Sorting** - Supports sorting of list items in an alphabetical order (either ascending or descending).
|
|
2145
|
-
|
|
2146
|
-
- **Filtering** - Allow filtering the list items based on a character typed in component.
|
|
2147
|
-
|
|
2148
|
-
- **Custom Value** - Allows user to select a new custom value.
|
|
2149
|
-
|
|
2150
|
-
- **Accessibility** - Provided with built-in accessibility support which helps to access all the MultiSelect component features through the keyboard, screen readers, or other assistive technology devices.
|
|
2151
|
-
|
|
2152
|
-
### ComboBox
|
|
2153
|
-
|
|
2154
|
-
ComboBox component allows the user to type a value or choose an option from the list of predefined options. When an arrow icon accompanied with this component is pressed, the dropdown displays a list of values, from which the user can select one. The available key features are
|
|
2155
|
-
|
|
2156
|
-
- **Data binding** - Allows binding and accessing the list of items from local or server-side data source.
|
|
2157
|
-
|
|
2158
|
-
- **Custom values** - Allows setting user-defined values that is not in the popup list.
|
|
2159
|
-
|
|
2160
|
-
- **Grouping** - Supports grouping of logically related items under a single or specific category.
|
|
2161
|
-
|
|
2162
|
-
- **Sorting** - Supports sorting of list items in an alphabetical order (either ascending or descending).
|
|
2163
|
-
|
|
2164
|
-
- **Filtering** - Allows filtering of list items based on a character typed in the component.
|
|
2165
|
-
|
|
2166
|
-
- **Templates** - Allows customizing the list items, selected value, header, footer, category group header, and no records content.
|
|
2167
|
-
|
|
2168
|
-
- **Accessibility** - Provided with built-in accessibility support that helps to access all the ComboBox component features through the keyboard, screen readers, or other assistive technology devices.
|
|
2169
|
-
|
|
2170
|
-
### AutoComplete
|
|
2171
|
-
|
|
2172
|
-
AutoComplete component provides the matched suggestion list when type into the input, from which the user can select one. The available key features are
|
|
2173
|
-
|
|
2174
|
-
- **Data binding** - Allows binding and accessing the list of items from local or server-side data source.
|
|
2175
|
-
|
|
2176
|
-
- **Grouping** - Supports grouping of logically related items under a single or specific category.
|
|
2177
|
-
|
|
2178
|
-
- **Sorting** - Supports sorting of list items in an alphabetical order (either ascending or descending).
|
|
2179
|
-
|
|
2180
|
-
- **Highlight search** - Supports highlighting the typed text in the suggestion list.
|
|
2181
|
-
|
|
2182
|
-
- **Templates** - Allows customizing the list item, header, footer, category group header, no records and action failure content.
|
|
2183
|
-
|
|
2184
|
-
- **Accessibility** - Provided with built-in accessibility support that helps to access all the AutoComplete component features through keyboard, on-screen readers, or other assistive technology devices.
|
|
2185
|
-
|
|
2186
|
-
### DropDownList
|
|
2187
|
-
|
|
2188
|
-
DropDownList component contains a list of predefined values from which a single value can be chosen. The functionality of DropDownList resembles the SELECT form element of HTML. When an arrow icon accompanied with this component is pressed, the dropdown displays a list of values from which you can select one. The available key features are
|
|
2189
|
-
|
|
2190
|
-
- **Data binding** - Allows to bind and access the list of items from the local or server-side data source.
|
|
2191
|
-
|
|
2192
|
-
- **Grouping** - Supports grouping the logically related items under single or specific category.
|
|
2193
|
-
|
|
2194
|
-
- **Sorting** - Supports sorting of list items in an alphabetical order (either ascending or descending).
|
|
2195
|
-
|
|
2196
|
-
- **Filtering** - Allow filtering the list items based on a character typed onto the search box.
|
|
2197
|
-
|
|
2198
|
-
- **Templates** - Allows customizing the list items, selected value, header, footer, category group header, and no records content.
|
|
2199
|
-
|
|
2200
|
-
- **Accessibility** - Provided with built-in accessibility support which helps to access all the DropDownList component features through the keyboard, screen readers, or other assistive technology devices.
|