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

How do I render the partial view using jquery?

We can render the partial View like this:

<% Html.RenderPartial("UserDetails"); %>

How can we do the same using jquery?

share|improve this question

4 Answers

You can't render a partial view using only jQuery. You can, however, call a method (action) that will render the partial view for you and add it to the page using jQuery/AJAX.

$.get( '<%= Url.Action("details","user", new { id = Model.ID } %>', function(data) {
    $('#detailsDiv').replaceWith(data);
});

Razor

$.get( '@Url.Action("details","user", new { id = Model.ID } )', function(data) {
    $('#detailsDiv').replaceWith(data);
}); 

where the user controller has an action named details that does:

public ActionResult Details( int id )
{
    var model = ...get user from db using id...

    return Partial( "UserDetails", model );
}
share|improve this answer
I keep getting bad request with this example code your gave. I copied as is and just changed the Controller action it should go to. I am not sure what "user" is for. – chobo2 Nov 8 '09 at 5:55
I just used some "likely" controller and action names since you didn't include any code that we could go by. Just replace "details" with your action and "user" with your controller name. – tvanfosson Nov 8 '09 at 13:04
Thanks again for a great answer tvanfosson. – user172632 Nov 3 '10 at 19:28
+1 that's amazing, thanks – adrianos Apr 29 '11 at 21:24
any idea how this would work with Razor? tried $.get( "@Url.Action(\"Manifest\",\"Upload\", new { id = " + key + " })", function(data) { $("<div/>").replaceWith(data); } ); – Patrick Scott May 24 '11 at 19:23
show 5 more comments
up vote 62 down vote accepted

I have used ajax load to do this:

$('#user_content').load('/User/UserDetails');
share|improve this answer
20  
Generally I think you're better off going with the Url.Action helper instead of hard-coding the path. This is going to break if your web site is in a subdirectory rather than at the root. Using the helper fixes that problem and allows you to add parameters with dynamically set values. – tvanfosson Nov 3 '10 at 19:33
7  
You could do $('#user_content').load('@Url.Content("~/User/UserDetails")') to get around that- i often use this method if i need the javascript to slap on the querystring params at the end of the url – Shawson Apr 30 '12 at 10:08
In this answer, UserDetails is a name of an action, not a partial view, right? – Maxim V. Pavlov Jun 11 '12 at 23:02
Yes. UserDetails is the name of an action which returns a PartialView. – Prasad Jun 12 '12 at 4:07

You'll need to create an Action on your Controller that returns the rendered result of the "UserDetails" partial view or control. Then just use an Http Get or Post from jQuery to call the Action to get the rendered html to be displayed.

share|improve this answer

You could have a look at below article as well.

http://www.tugberkugurlu.com/archive/working-with-jquery-ajax-api-on-asp-net-mvc-3-0-power-of-json-jquery-and-asp-net-mvc-partial-views

It follows a different approach and enhances the way.

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.