This question is locked. New answers and comments are not allowed.
I'm trying to use Ajax binding for my grid like this:
| .DataBinding(dataBinding => dataBinding |
| .Ajax().Select("_Binding", "MyController", new { companyId = ViewData["CompanyId"] }) |
| ) |
But instead of using ViewData, I would like to use the contents of a hidden field. How can I pass that field to the Select method?
Thanks!
Jerry