@syncfusion/ej2-dropdowns 23.1.39 → 23.1.40-85814

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