In documentation it says about ModalView:
"The widget can be open when any mobile navigational widget (listview, button, tabstrip, etc.) is tapped. To do so, the navigational widget should have data-rel="modalview" and href attribute pointing to the ModalView's element id set (prefixed with #, like an anchor)."
I've tried to use the "data-rel" attribute inside a listview template, but it gives error about invalid template.
Example:
<script type="text/x-kendo-template" id="MyListViewTemplate"> <a data-rel="modalview" href="#MyModalViewId">Open</a> </script>
Can you please give example how to use it properly from listview?