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

I am using multiple partialview on my View. on left hand side I have some link button.

In middle I have 2 partialview let us suppose Up and Down I m able to update the Up partialview now I want to update Down partial view on the click of same link button

I m able to send only one UpdateTargetID in Ajax.ActionLink button but I want to update 2 Partialview one the clcik of the same button.

1) Is there any way I can pass more than one UpdateTargetID in Ajax.ActionLink or 2) I can return Multiple partial view in Home Controller or any other way as u suggest Please reply me

Thanks Everyone for replying Let me tell you what I have done in order to refresh multiple partial view on a single click This is the Action Link which I m using to click on Here I m using a OnSucess Function of this Action link in order to update, This Action link is on a partial view

                 <%= Ajax.ActionLink("Select", "Employee", new { Id = Employee.EmployeeID }, new AjaxOptions { UpdateTargetId = "EmployeeDiv", HttpMethod = "Post", OnSuccess = "function(){EmployeeHistory(-2," + Employee.EmployeeID.ToString() + ");}" })%>

This is a javascript that I m calling from a partial view

 function  EmployeeHistory(EmployeeID) {
    var url = '<%= Url.Action("PartialviewAction", "ControllerName") %>'
    $('#PartialviewDiv1').load(url, { Id: EmployeeID });
    var url1 = '<%= Url.Action("PartialviewAction", "ControllerName") %>'
    $('#PartialviewDiv2').load(url1, { Id: EmployeeID });

}

and these two div are in Index view which I want to update

        <div id="Paritalview div1"><% Html.RenderPartial("PartialViewname1"); %></div>
        <div id="Paritalview div2"><% Html.RenderPartial("PartialViewname2"); %></div>
share|improve this question
Check out my answer here: stackoverflow.com/a/14036279/386739 It works really well for me – Ryan Dec 26 '12 at 5:21

1 Answer

up vote 7 down vote accepted

Yes there is - don't use Ajax.ActionLink.

IMO, the MS Ajax library, as with Web Forms, is bloated.

Keep it simple - use jQuery - then you have total control:

$(function() {
   $('#somelink').click(function(e) {
      e.preventDefault();

      $.get('/controller/action1', function(data) {
         $('#up').html(data);
      });

      $.get('/controller/action2', function(data) {
         $('#down').html(data);
      });
   });
});

However, since you're updating both panels, I would suggest wrapping those two middle panels in a partial view of it's own - then serve that via a single action method - that way you only need 1 ajax call.

Edit

As @FelixM mentions, you should use Url.Action or Url.RouteUrl to generate the URL for the AJAX call, so if your routes change then your JS need not, e.g:

.get('@Url.Action('Controller', 'Action1')', function(data)

or

.get('@Url.RouteUrl('SomeNamedRoute')', function(data)

If your putting this script in an external file then you'll need to use a technique to set the url in the main view, then read from the external variable.

Such techniques include a JavaScript variable, hidden field, passing URL to function as parameter, etc.

share|improve this answer
Good answer. Just to be sure, instead of putting the Controller/Action URL explicitly, use Url.Action to render the correct URL. – FelixMM Jun 14 '11 at 12:08
Thanks for the reply, some thing I need to update I m using 3 partial view and the link on which I m clicking is on the left hand side and it is on a partial view as well, I m new to MVC, Please tell me how to use it as well – Evostract Jun 14 '11 at 12:35
+1, agreed, total control leads to happiness. If I needed to update multiple areas of a page corresponding to partial views at the same time, I'd do it using a single action with a json response with the help of a "RenderViewToString" implementation. – Stephen Swensen Jun 14 '11 at 19:09
@user674363 - simply saying "I am new to MVC" doesn't enable us to solve your problem, rather give us an indication of how much detail to go into. So it sounds like you have 3 panels: LHS, then two in the middle. Do you want to update all three? Why would you want to update the LHS panel if that's where the user is clicking (e.g it sounds like the LHS is a "menu", and the middle is the data) – RPM1984 Jun 15 '11 at 0:41
As per the requirement The panel on LHS gets updated every minute and the panel on RHS should be updated when clicked on any select link button on the LHS – Evostract Jun 15 '11 at 5:21
show 2 more comments

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.