@syncfusion/ej2-dropdowns 20.4.53 → 20.4.54-54740

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