This question is locked. New answers and comments are not allowed.
How do I get hold of the model values in my client template?
I have
Any ideas?
I have
columns.Template(template => template.NewOrderID )But, it fails with Parameters dictionary can't be null. So I assume that my value output is not being evaluated early enough. I tried to mimic the ActionLink stuff, assuming the behaviour would be the same, but it seems not to be true.
.ClientTemplate(Html.Action("FindMatch", "Home", new RouteValueDictionary { { "newOrderId", "<#= NewOrderID #>" } }).ToString())
Any ideas?