This question is locked. New answers and comments are not allowed.
I have a grid in a view. I have also a 'change query form' on the same view. I can create a new query from the change query form and then make an ajax call to get data to update the grid. The change query form is an ajax form. As I understand it, the Ajax Form can't accept json data from the controller but only view or partial view. I don't want to replace the grid completely, so I dont want to return a partial view. I prefer receiving the json and update the grid.
What is my option here? Should I use jquery ajax call to get data from the controller and then update the grid? Is there a better solution than I'm talking here.
What is my option here? Should I use jquery ajax call to get data from the controller and then update the grid? Is there a better solution than I'm talking here.