C# Tutorials and offshore development in India
    Tutorials   Resources   Forum   Reviews   Communities   Interview   Jobs   Projects   Training   Your Ad Here    
Silverlight Games | Mentor | Code Converter | Articles | Code Factory | Computer Jokes | Members | Peer Appraisal | IT Companies | Bookmarks | Polls | Revenue Sharing | Lobby | Gift Shop |


Prizes & Awards
My Profile



Active Members
TodayLast 7 Days more...






Resources » Code Snippets » Visual Studio »

Infragistics - Nested Tables in UltraGrid


Posted Date: 16 Oct 2009    Resource Type: Code Snippets    Category: Visual Studio
Author: Deepika HaridasMember Level: Diamond    
Rating: 1 out of 5Points: 25



Nested Tables in UltraGrid :

Note : You can download the trial version of infragistics from http://infragistics.com

In this example, UltraGrid will show parent rows containing Company records and for each company record there will be corresponding Employee records.

First of all you need to create Employee and Company class files

Employee.cs

using System;

using System.Collections.Generic;

using System.Text;

namespace NestedTableUltraGrid

{

class Employee

{

string strFirstName;

string strLastName;

public string StrFirstName

{

get { return strFirstName; }

set { strFirstName = value; }

}

public string StrLastName

{

get { return strLastName; }

set { strLastName = value; }

}

public Employee(string Fname, string Lname)

{

strFirstName = Fname;

strLastName = Lname;

}

}

}

Company.cs

using System;

using System.Collections.Generic;

using System.Text;

namespace NestedTableUltraGrid

{

class Company

{

string strCompanyName;

List<Employee> employees = new List<Employee>();

public string StrCompanyName

{

get { return strCompanyName; }

set { strCompanyName = value; }

}

public List<Employee> Employees

{

get { return employees; }

set { employees = value; }

}

public Company(string Cname)

{

strCompanyName = Cname;

}

}

}

Next you’ll need to add UltraDataSource component in the form

Here UltraDataSource Designer is used in order to define DataBounds (tables), their relationship and their DataColumns (fields).












Now You’ll define a DataBand called Company with a single DataColumn called CompanyName.













Next, you will define a DataBind called Employee with two DataColumns: FirstName and LastName.












Next, you will add an instance of the UltraGrid control and bind it to the UltraDataSource component.

Click on the Finish button.












The UltraGrid control is still selected. You will set its Dock property to Fill so that the UltraGrid fills the entire area of the form.

Click on the Fill option.

The UltraGrid control provides two load styles: PreloadRows and LoadOnDemand. In this exercise, you will use the LoadOnDemand option.

Expand the DisplayLayout section.

Click on the LoadStyle down arrow.

Click on the LoadOnDemand option.

You bind the UltraDataSource component (with the schema that you defined) to the UltraGrid control by using the UltraGrid’s DataSource property.



























using System;

using System.Collections.Generic;

using System.ComponentModel;

using System.Data;

using System.Drawing;

using System.Text;

using System.Windows.Forms;

namespace NestedTableUltraGrid

{

public partial class Form1 : Form

{

List<Company> companies = new List<Company>(100);

public Form1()

{

InitializeComponent();

}

private void Form1_Load(object sender, EventArgs e)

{

for (int i = 0; i <>

{

Company company = new Company("CN " + i.ToString());

company.Employees.Add(new Employee("FName " + i.ToString(), "LName " + i.ToString()));

companies.Add(company);

ultraDataSource1.Rows.SetCount(companies.Count);

}

}

private void ultraDataSource1_CellDataRequested(object sender, Infragistics.Win.UltraWinDataSource.CellDataRequestedEventArgs e)

{

switch (e.Column.Key)

{

case "CompanyName":

e.Data = companies[e.Row.Index].StrCompanyName;

break;

case "FirstName":

e.Data = companies[e.Row.ParentRow.Index].Employees[e.Row.Index].StrFirstName;

break;

case "LastName":

e.Data = companies[e.Row.ParentRow.Index].Employees[e.Row.Index].StrLastName;

break;

default:

break;

}

}

private void ultraGrid1_BeforeRowExpanded(object sender, Infragistics.Win.UltraWinGrid.CancelableRowEventArgs e)

{

ultraDataSource1.Rows[e.Row.Index].GetChildRows(0).SetCount(companies[e.Row.Index].Employees.Count);

}

}

}

Run the application expand the blocks and check the Output












Attachments

  • Ultragrid (34031-16330-NestedTableUltraGrid.rar)

    For more details, visit http://angeldeeps.blogspot.com/2009/09/infragistics-nested-tables-in-ultragrid.html



  • Responses


    No responses found. Be the first to respond and make money from revenue sharing program.

    Feedbacks      
    Popular Tags   What are tags ?   Search Tags  
    Sign In to add tags.
    UltraGrid  .  Nested Tables  .  Infragistics - Nested Tables in UltraGrid  .  Infragistics  .  

    Post Feedback


    This is a strictly moderated forum. Only approved messages will appear in the site. Please use 'Spell Check' in Google toolbar before you submit.
    You must Sign In to post a response.
    Next Resource: Greeting card design for Birthday using VC++
    Return to Discussion Resource Index
    Post New Resource
    Category: Visual Studio


    Post resources and earn money!
     
    More Resources



    dotNet Slackers

    About Us    Contact Us    Privacy Policy    Terms Of Use