@syncfusion/ej2-dropdowns 24.1.44 → 24.1.45-12082

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