@syncfusion/ej2-dropdowns 23.1.44 → 23.2.4-13895

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