Hi Bruce,
Thanks for using Syncfusion Products,
We have achieved your requirement “want to display "10 of 30 items selected” in the following sample and please find the sample under the following location.
Sample Location:Dropdown Sample
In the above sample, we have displayed the No. of dropdown items selected in the button click.Please find the code for same,
<code>
function click() {
var DropDownListObj = $("#bikeList").data("ejDropDownList");
var item = DropDownListObj.element.val();
alert(item.split(",").length +" of " + DropDownListObj.listitems.length + " items selected");
}
</code>
Please let us know if you need further assistance.
Regards,
Kasithangam