@syncfusion/ej2-dropdowns 23.1.38 → 23.1.40-85814

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