@syncfusion/ej2-dropdowns 23.2.7-52849 → 24.1.41

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