Kendo Grid columns' data-bind click event in the footer template is not working.
Please see the example http://dojo.telerik.com/ALAZo
The click event on column template for price is working fine but not for the footer template for the same.
Any resolution which uses MVVM binding would be greatly appreciated
By default, the header and footer of the Grid are not bound to the ViewModel. A workaround is to find the footer with an appropriate jquery selector after the grid has been initialised and then bind it manually. So something like this:
Here I've added id="grid" to your grid declaration like so in order to find it:
I have reworked your example in order to get a solution where click event works on both column and footer template.
<a onclick='test()'...
seems to do the trick.