@syncfusion/ej2-dropdowns 25.2.4 → 25.2.5-30068

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