Hi,
I have an image with a click event in my ListView template - on the actual list item.
But by the time the click event fires, any multiple selection is lost.
No amount of preventDefault seems to fix this.
Perhaps I can code something complex to remember the selected items, but is there any way this would work without it?
<script id="group-available-template" type="text/x-kendo-template">
<div class="group available k-widget">
<div class="name">#:name#</div>
<div class="group-action arrow-left" id="add-assigned" data-bind="click: actions.addGroup">
<img src="../images/admin/arrowleft-16.png" />
</div>
</div>
</script>