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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T14:08:38+00:00 2026-05-26T14:08:38+00:00

I am using ASP.NET MVC and jQuery and I am loading a PartialView via

  • 0

I am using ASP.NET MVC and jQuery and I am loading a PartialView via Ajax. A seperate JavaSriptFile belongs to this PartialView. On success, the return html is inserted in the DOM. In the JavaScript, some stuff is done and that together might take a little moment. The loaded content is then displayed in a dialog.

Simplified Code:

1  $.ajax({
2    url: /user/edit,
3    dataType: 'html',
4    data: { id: 1 },
5    success: function (htmlCode) {
6       $('#dialogEditUser').html(htmlCode);
7       $('#dialogEditUser').dialog('open');
8    });
9 };

This code works and sometimes not, depending on how fast the PartialView’s JavaScript is executed. So sometimes, the dialog does not open. So i changed line number 7 to;:

7      setTimeout(function() { $j('#dialogEditUser').dialog('open') }, 250);

Now everything works fine. But this “hack” is not very suitable. How can I check if the PartialView’s JavaScript has been executed on the loaded content? Is there maybe any way to return a fully rendered PartialView (so the JavaScript has already been executed where I get the return of the AjaxCall?

  • 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-26T14:08:39+00:00Added an answer on May 26, 2026 at 2:08 pm

    By default ajax will not wait for the request to finish.
    Try setting async option to false:

    $.ajax({
        url: /user/edit,
        dataType: 'html',
        async: false,
        data: { id: 1 },
        success: function (htmlCode) {
           $('#dialogEditUser').html(htmlCode);
           $('#dialogEditUser').dialog('open');
        });
    };
    

    More details in docs

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

Sidebar

Related Questions

I am using asp.net mvc and jquery to make ajax requests and when the
I am using ASP.NET MVC and jQuery. I have this code in my js
We are developing an application in ASP.Net MVC 3 using jQuery UI Dialog. This
I am using ASP.NET MVC 3 with jquery.unobtrusive-ajax, and I want to hide a
if i call a ajax request using jquery to an asp.net mvc controller action
Using ASP.NET MVC + jQuery : I need to use some values owned by
I have build a webapplication using ASP.NET MVC and JQuery. On my local machine
I am developing an application using Asp.net mvc and jquery. I'd like to use
I'd like to achieve the following effect using ASP.NET MVC and JQuery. I've got
I am using ASP.Net MVC along with Jquery to create a page which contains

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.