I've tried various methods of using template bound data with Url.Action with no luck.
<script type="text/x-kendo-template" id="kendo-template">
<a href='@Url.Action("action", "controller", new { id = "#=id"}'>Click me</a>
<script>
It seems that the # character gets encoded, so kendo is not able to render the template with the correct id.
How may I use the kendo-template together with the Url.Action helper?