Hi,
I'm new in MVC. I'm working on a page and I do not want to make an ajax call using
$.ajax({...
but instead I'm using Ajax.BeginForm. I have a kendo grid also, which I intend to bind after getting the results from action method.
My Kendo grid is not the one with Html Helpers. So, I make it using
$("#regs-grid").kendoGrid({... But there are 2 problems;
1. The Kendo grid is hidden after the ajax call (Because it's made entirely on the client side may be that's why)
2. I have no idea how to bind it after getting the results from the action method
Any help or related sample will be very helpful.