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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T07:49:52+00:00 2026-05-28T07:49:52+00:00

i have an object which holds a user name and job count, which then

  • 0

i have an object which holds a user name and job count, which then is inserted into a list. (from a datatable)

Assuming the code below is the right way to go about this, how do i access these data elements in javascript?

class:

public class thePeople
{
    public string Name { get; set; }
    public string Calls { get; set; }


    public thePeople(string n, string c)
    {
        Name = n;
        Calls = c;

    }
}

then the code using the class:

        var thosePeople = new List<thePeople>();

        StringBuilder Qry = new StringBuilder();

        Qry.Append("SELECT Count(Job_Id) as TotalJobs, User_Name,User_Id, jobstatus ");
        Qry.Append("FROM Jobs, Users ");
        Qry.Append("WHERE Jobs.jobstatus like 'o' AND Users.deleted = '0' AND Jobs.Next_User_Id = Users.User_Id ");
        Qry.Append("GROUP BY User_Name");

        DataTable dt = new DataTable();
        dt = OMALibrary.OMADAL.Execute.PerCustomer.Query(Qry.ToString(), OMALibrary.OMADAL.Enumerators.TypeOfServers.Helpdesk, theCustomer);

        for (int x = 0; x <= dt.Rows.Count - 1; x++)
        {
            thosePeople.Add(new thePeople(dt.Rows[x]["User_Name"].ToString(), dt.Rows[x]["Total_Jobs"].ToString()));
        }

        return JsonConvert.SerializeObject(thosePeople);

When i did this before for a “single row” object, I’d just use:

var users = jQuery.parseJSON(response.d)

then just access it by typing:

users.Name; users.Calls;
  • 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-28T07:49:52+00:00Added an answer on May 28, 2026 at 7:49 am

    You’ll need to look at the serialized result to see what it looks like. Since you’re serializing a List, it probably comes through as an array:

    [
        {
            "Name": "Joe",
            "Calls": 1
        },
        {
            "Name": "Nitin",
            "Calls": 3
        }
    ]
    

    …and so you’d access the elements as

    var users = jQuery.parseJSON(response.d);
    console.log(users.length);  // The number of entries
    console.log(users[0].Name); // The first user's name
    console.log(users[1].Name); // The first user's name
    

    Or loop through:

    jQuery.each(users, function(index, user) {
        // Here, `user` is an entry from the array, so `user.Name` and `user.Calls`
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an object of type IMAGE which holds image. I wanted to display
I have an asp:ListView control which list playlists. It has paging supported and holds
I have a controller which inherits from an abstract secure controller which holds a
I have a Cocoa project with an object that holds information from a SQLite
I have a Serializable object which is supposed to hold a java.awt.Image as its
I have object A which in turn has a property of type Object B
I have object A which contains multiple instances of object B, which in turn
I have an object which straight forward instance variables. Some are NSString, some are
I have this object which is an instance of a superclass. I want to
I have an object which contains models for my ASP.NET MVC web app. The

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.