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 8031431
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T01:05:53+00:00 2026-06-05T01:05:53+00:00

wish to ajax/refresh the current page after quitting a jquery dialog. I am having

  • 0

wish to ajax/refresh the current page after quitting a jquery dialog.

I am having a View which contains a foreach loop, the data is pulled down from a model, there are 2 buttons edit/Delete for each loop. When I click on the ‘edit button’, a jquery UI Dialog is opened for editing, when I save the Jquery Dialog, what I want is to Ajax/Refresh the datas of the View after quiting the dialog (especially the edited datas of course).

How can I achieve it ?

Thanks

this is My View:

@{
    foreach (var item in Model) {
        <tr>
            <td>
                @Html.DisplayFor(modelItem => item.IdPhoto)
            </td>
            <td>
                @Html.TextAreaFor(modelItem => item.Date)
            </td>
            <td>
                @Html.TextAreaFor(modelItem => item.Nom)
            </td>
            <td>
                @Html.DisplayFor(modelItem => item.Category)
            </td>
            <td>
                @Html.CheckBoxFor(modelItem => item.Actif)
            </td>
            <td>

            <button class="Edit" value="@item.IdPhoto">Edit</button> 
            <button class="Delete" value="@item.IdPhoto">Delete</button> 

            </td>
        </tr>
    }
}
  • 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-06-05T01:05:55+00:00Added an answer on June 5, 2026 at 1:05 am

    My suggestion is to load the information you want to edit/delete from a partial view using jQuery.
    Then you can edit/delete from your jQuery dialog and when you are done, just reload that partial view using jQuery once again.

    The code on your view would be something along the lines of:

    $(document).ready(function () {
    
        LoadInfo(); //Loads partial view
    
    });
    
    function LoadInfo() {
    
        $.get("MyAction", { param1 : myParameter }, function (data) {
    
            $("#mydata").empty();
            $("#mydata").html(data);
        });
    }
    

    And in your Controller:

        [HttpGet]
        public virtual ActionResult MyAction(parameters)
        {
            var query = GetMyDataModel();
    
            return PartialView("_MyPartialViewName", query);
        }
    

    And when you are done editing/deleting, you can call LoadInfo() once again and it will reload that part of your page.

    Hope this helps.

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

Sidebar

Related Questions

I wish to screen scrape several Ajax based websites and simulate clicks which refresh
I wish to execute a javascript function after asp.net postback with out using ajax.
I am trying to use jQuery AJAX. What my requirement is, i wish to
I wish to execute a jquery based ajax form submission on pressing the enter
I have a form I wish to submit via ajax usind the jQuery $.post
When I make a jquery ajax call to auto fill a dropdown on page
After a user enters data on my home page, I wish to send the
Having a bit of a hairy issue when submitting data over a jquery ajax
I using jquery datatable plugin and having a Create button for ajax creation of
I wish a page to fully load before issuing an ajax call to update

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.