@syncfusion/ej2-dropdowns 24.1.45-12082 → 24.1.46

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