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