@syncfusion/ej2-dropdowns 23.2.6 → 23.2.7-52849

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