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