Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

For a project I need a dynamic way of loading partial views, preferably by jquery / ajax.

Here's the functionality I require:

  • User enters form. A dropdownlist is shown and a generic partial view is rendered with some input controls.
  • User selects a different value in the dropdown
  • The partial view refreshes. Based on the value of the dropdown, it should load the partial view. Some values have custom views associated with them (I could name them with the primary key for instance), others don't. When there's no custom view; it should load the default. When there is one, it should of course load the custom one.

And this should all be ajaxified when possible.

I have read some things about dynamically loading partials, but I wanted to repost the complete case so I can find the best solution for this specific case.

share|improve this question

2 Answers

up vote 9 down vote accepted

Assuming you have a dropdown:

@Html.DropDownListFor(
    x => x.ItemId,
    new SelectList(Model.Items, "Value", "Text"),
    new { 
        id = "myddl", 
        data_url = Url.Action("Foo", "SomeController")
    }
)

you could subscribe for the .change() event of this dropdown and send an AJAX request to a controller action which will return a partial and inject the result into the DOM:

<script type="text/javascript">

$(function() {
   $('#myddl').change(function() {
       var url = $(this).data('url');
       var value = $(this).val();
       $('#result').load(url, { value: value })
    });
});

</script>

And place a DIV tag where you want the partial view to render in your host view:

<div id="result"></div>

and inside the Foo action you could return a partial view:

public ActionResult Foo(string value)
{
    SomeModel model = ...
    return PartialView(model);
}
share|improve this answer
Works perfectly, thanks. One more question. If I put all partial views in a subfolder, how can I then access those with the PartialView method? – Jasper Apr 7 '11 at 21:41
Never mind, stupid question. Just use PartialView("folder/view"). – Jasper Apr 7 '11 at 21:42
Darin, how can I make sure I have a model serverside to pass to the partial view? – Jasper Apr 7 '11 at 21:58
Hi, this way can't work when client disable javascript. In my view, design a web app need to work for all case disable/enable javascript. – langtu Apr 8 '11 at 17:23
@langtu, that's why you should also provide the possibility of the form that contains this dropdown to be submitted normally without javascript. Obviously it will be impossible to perform this action on changing the value of the ddl but yet the user can submit the form and get a result. – Darin Dimitrov Apr 8 '11 at 17:25

You should handle the value changed event of the combobox, get the Id selected, then use ajax to call a server action, passing the selected Id. The server action will return the corresponding view. At client side you populate the returned view to a region on the page.

For example of the server side action:

public ActionResult GetView(int id)
{
    switch (id)
    {
        case 1:
            return View("View1", model1);
            break;
        case 2:
            return View("View2", model2);
            break;
        default:
            return View("Default", modelDefault);
    }
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.