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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T10:45:51+00:00 2026-05-15T10:45:51+00:00

I have a view in which there is a list.Every record in the list

  • 0

I have a view in which there is a list.Every record in the list have some child records . When I click on the details link ,I want the records to be displayed in the table below.
What mechanism should I follow to do this ?
I want some way to display the values in table below.

  • 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-15T10:45:52+00:00Added an answer on May 15, 2026 at 10:45 am

    The easiest way to do it would be to call an action that returns a partial view with the record.

    If you are using jQuery, the code would be like this:

     <!-- Code for each link, obviously, 1 would be the ID of each record -->
     <a href="/Records/Detail/1" class="details">View details</a>
    

    Wherever you want to show the details, add an empty div:

     <div id="viewDetails"></div>
    

    jQuery code, to include in the head of the document:

     $(document).ready( function() {
           $('.details').live('click', function() {
                var link = $(this);
                $('#viewDetails').load(link.attr('href'));
                return false;
           });
     });
    

    Code for the action:

     public ActionResult Details(int id) {
           // Get model
           return PartialView(model);
     }
    

    I usually add an extra parameter to the action, to check if the Action has been called using Ajax. If not, instead of the PartialView I return a View that includes the PartialView (I do this for accessibility, and to be sure that the web/app keeps working even if the Javascript failed).

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

Sidebar

Related Questions

I have a data view web part on a page which is displaying a
Hey there, I'm trying to make a site which have following: News, Products, About
I am running WSS3.0 and have a custom list which contains versioning on a
I have an A - Z directory 'widget' that I have on every page.
I am developing a module to display video. I have created a view so-called
Under the user generated posts on my site, I have an Amazon-like rating system:
I'm having a slight problem with an Eclipse Plug-In in development. There is a
I have a ViewFlipper implementation that needs to be improved. This ViewFlipper has three
I am trying to add a divider between entries in a vertical LinearLayout, to
what would be the recommended way for my main window to communicate with his

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.