The maximum total value of the dataSource. Unlike the currentTotal, this value will keep the maximum reached total value.
Usable when the tag shows the total of the available items.
<selectid="multiselect"multiple="multiple"></select><scriptid="tagTemplate"type="text/x-kendo-template"><span><img src="/img/#: id #.png" alt="#: name #"/>
#: name #
</span></script><script>$("#multiselect").kendoMultiSelect({dataSource:[{id:1,name:"Apples"},{id:2,name:"Oranges"}],dataTextField:"name",dataValueField:"id",tagTemplate: kendo.template($("#tagTemplate").html())});</script>
<selectid="multiselect"multiple="multiple"></select><script>$("#multiselect").kendoMultiSelect({dataSource:[{id:1,name:"Apples"},{id:2,name:"Oranges"}],dataTextField:"name",dataValueField:"id",tagTemplate:'<span><img src="/img/#: id #.png" alt="#: name #" />#: name #</span>'});</script>