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

  • Home
  • SEARCH
  • 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 899811
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T15:17:05+00:00 2026-05-15T15:17:05+00:00

Let me start of by saying that I am inexperienced with JavaScript. Here is

  • 0

Let me start of by saying that I am inexperienced with JavaScript.

Here is what I want to do. When the user clicks “Show Details” on a row of data, they get a pop-up (modal?) window that has some data generated from another action within the MVC application. Where can I find an example of implementing something like this?

Also, when a user clicks “Approve” on either this pop-up or on the original data row another pop-up will display with a form a person needs to fill out.

Any direction will be greatly appreciated.

  • 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-15T15:17:06+00:00Added an answer on May 15, 2026 at 3:17 pm

    First of all, you will need a DIV somewhere on your page – let say give it an id “PopUpPanel”. Now create a “ready” event for jQuery to initialize the pop-up/modal dialog:

    <script type="text/javascript">
        $(document).ready(function () {
            $("#PopUpPanel").dialog({
                modal: true,
                autoOpen: false,
                height: 'auto',
                width: 'auto',
                buttons: {
                    "Close": function () {
                        $(this).dialog("close");
                    }
                }
            });
        });
    </script>
    

    Assuming the row has a link “Show Detail” – Create a “handler” for “Show Detail” click:

    <script type="text/javascript">
        function showDetail(id) {
            $.get('MyController/MyAction/' + id, function(data) {
                $('#PopUpPanel').html(data);
                $('#PopUpPanel').dialog('open');
            });
        }
    </script>
    

    Those should get you to the point where your detail page is showing up in a pop-up/dialog window. To pop-up the other form in additional to the detail dialog or to replace the detail dialog, it should be pretty similar.

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

Sidebar

Related Questions

Let me start out by saying that I'm not a JavaScript developer so this
Let me start by saying that I'm not a power-JavaScript/jQuery programmer, I do very
Let me start by saying that I do not advocate this approach, but I
First off, let me start by saying that I am totally new to working
Firstly, let me start by saying that I haven't ever directly used SQL views.
Let me start by saying that I know nothing about Cron, so sorry. How
Let me start out by saying that I feel like there should be a
Let me start out by saying that I am new to Java/JSP web development,
I want to start by saying that I am a big fan of using
Let me start by saying that I know that NH doesn't recommend using bulk

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.