Sometimes you need to make an AJAX call from your MVC view to perform some server side actions on user changes. You may then want to return some calculated data in a partial view so that you can update the view as presented to the user.
What if you have modified data in more than one partial view?
An application I worked on required some server side calculations that updated both data in a table (one partial view) and summary data displayed in the footer of the page (a second partial view). I would not want to make two separate service side calls to update the two partial views, so I looked into a mechanism to allow me to return the two partial views in the response from the server side call.
I realised that if I could package the two partial view responses into a single object, I could pass this to the client in the response, then use my client side script (JQuery in my case) to unpack the responses and update the two partial views.
The tricky bit was how to package up the partial views. Google pointed to this method to render a Razor view into a string(obtained from ):
public static String RenderRazorViewToString(ControllerContext controllerContext, String viewName, Object model) { controllerContext.Controller.ViewData.Model = model; using (var sw = new StringWriter()) { var ViewResult = ViewEngines.Engines.FindPartialView(controllerContext, viewName); var ViewContext = new ViewContext(controllerContext, ViewResult.View, controllerContext.Controller.ViewData, controllerContext.Controller.TempData, sw); ViewResult.View.Render(ViewContext, sw); ViewResult.ViewEngine.ReleaseView(controllerContext, ViewResult.View); return sw.GetStringBuilder().ToString(); } }
Using this method, I was able to create a controller action that returned a JSON object containing the rendering for my two partial views:
[HttpPost] public ActionResult _CalculateValues(MyViewModel model) { ModelState.Clear(); calculationService.CalculateValues(model, User.Identity.Name); // The total values and summary values are displayed in two partial views // We can't normally return two partial views from an action, but we don't want to have another server // call to get the second one, so we render the two partial views into HTML strings and package them into an // an anonymous object, which we then serialize into a JSON object for sending to the client // the client side script will then load these two partial views into the relevant page elements var totalValuesPartialView = RenderRazorViewToString(this.ControllerContext, "_TotalValues", model); var summaryValuesPartialView = RenderRazorViewToString(this.ControllerContext, "_SummaryValues", model); var json = Json(new { totalValuesPartialView, summaryValuesPartialView }); return json; }
Note that my two partial views (“_TotalValues.cshtml” and “_SummaryValues.cshtml”) both use the same model in my example as the view that they are displayed on (MyModelView). I don’t believe this would be a necessary restriction though.
In my view I render the two partial views using mark up similar to:
<div id="_TotalValues" data-url='@Url.Action("_CalculateValues", "Improvement")'> @{ Html.RenderPartial("_TotalValues", Model); } </div>
and
<div id="_SummaryValues"> @{ Html.RenderPartial("_SummaryValues", Model); } </div>
Finally, I have a JScript method to make the AJAX call on some event (such as the user changing a value or clicking a button – whatever event the method is bound to) and update the partial views with the response:
// Make an ajax call to recalculate the total values and summary values function calculateTotalAndSummaryValues() { // Get the controlller action url var url = $("#_TotalValues").data('url'); var data = $("form").serialize(); // Post the current contents of the form, so we show the Year 1 to 5 benefit values (which might be unsaved) $.post(url, data, function (response) { // This post will return a JSON object with two properties called totalValuesPartialView and summaryValuesPartialView // these will contain the rendering for the two partial views _TotalValues and _SummaryValues // by packaging these two up, we can update two partial views from this ajax post // with one single server method call $("#_TotalValues").html(response.totalValuesPartialView); $("#_SummaryValues").html(response.summaryValuesPartialView); }); }
This is a very simplistic implementation, with no error handling, just to show the technique.
The key features are:
- Use a helper method to render a razor partial view into a string
- Package the partial views into a JSON object
- Use JScript / JQuery to unpack the AJAX call response and update HTML elements (DIVs) containing the partial views