Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 517727
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T07:51:51+00:00 2026-05-13T07:51:51+00:00

I have a div with a partial inside somewhere on the page. I have

  • 0

I have a div with a partial inside somewhere on the page. I have a event on a button. How could I write a Javascript that takes the div and reloads it and also reloads the partial view.

I have this in another view. But I can’t do it like this now. But I need the same thing to happen only execute by a jQuery not directly in the page. Can i run maybe simular ajax code in the jQuery script because its javascript too isn’t it?.

<%  using (Ajax.BeginForm("EditFeiertag", new AjaxOptions { InsertionMode = InsertionMode.Replace, UpdateTargetId = "feiertage" }))
    {  %>
<div id="feiertage">
    <% Html.RenderPartial("FeiertagTable"); %>
</div>
<%  } %>

I would help me if I could run the script above by start a click event or something like that

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T07:51:51+00:00Added an answer on May 13, 2026 at 7:51 am

    Lets start with some basic controller actions:

    public class FeiertagController
    {
        IFeiertagService feiertagService = new FeiertagService();
    
        public ActionResult EditFeiertag()
        {
            // ... return your main edit view
            return View();
        }
    
        // Will be called by your jquery ajax call
        public PartialResult GetFeiertagTable()
        {
            var feiertagData = messageService.getLatestFeiertagData();
            var viewModel = new FeiertagViewModel();
            feiertagViewModel.feirtagTableData = feiertagData;
    
            return PartialView("FeiertagTableView", viewModel);
        }
    
    }
    

    So, EditFeiertag() is used to render your whole edit page, and that page will make a call to GetFeiertagTable() when it wants to asynchronously render your partial view.

    Now, on your view, lets say you have something like:

    <div id="Container">
        <div id="LeftPanel">
            // ... Some menu items
        </div>
        <div id="RightPanel">
            <a id="ReloadLink" href="#">Reload Table</a>
            <div id="FeiertagTable>
                <% Html.RenderPartial("FeiertagTable", Model.feiertagTableData); %>
            </div>
        </div>
    </div>
    

    This works fine and will load your table once. But you want to make the Feiertag table reload if you click a certain element (in our case the #ReloadLink).

    Add the following to portion of your page:

    <head>
            <script src="../../Scripts/Jquery/jquery-1.3.2.min.js" type="text/javascript"></script>
            <script type="text/javascript">
                jQuery(document).ready(function($) {
                    $('#ReloadLink').click(function(e)
                    {
                        e.preventDefault();  // stop the links default behavior
                        $('#FeiertagTable').load('/Feiertag/GetFeiertagTable');
                    });
                });
            </script>
    </head>
    

    That will then add an event on the click event for your reload link that will call a jquery load() method. This method is a simplified ajax get request and it will replace the contents of the selected div (FeiertagTable), with what is returned.

    Our GetFeiertagTable() controller action will return the partial view, which is then inserted into that div.

    I hope this gets you pointed in the right direction!

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Scenario: I have a View and inside that view I also a partial view.
I have a div with a width of 200px. There is text inside that
I have a helper inside a partial that I am loading something like this:
I have a Partial View with two opposite ActionLinks inside: <div id=divStatus> @if (IsAuthenticated)
Inside of an asp.net mvc partial view, I have an Ajax form that posts
I have a partial view which consists of a div with a benner that
I have a partial page in my application named _dashboard.html.erb. Inside of the dashboard,
In my rails view(index.html.erb), i have following structure <div> <%= render :partial => create
It seems that in Firefox, if I have div A with fixed width/height and
I have a div inside of a table which is inside of a form

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.