Go to DotNetFunda.com
 Online : 1371 |  Welcome, Guest!   Login
 
Home > Articles > C# > Infragistics - Nested Tables in UltraGrid

Submit Article | Articles Home | Search Articles |

Infragistics - Nested Tables in UltraGrid

red flag  Posted on: 10/21/2009 12:56:31 AM by Bubbly | Views: 2417 | Category: C# | Level: Beginner


This article demonstrates simple usage of Ultragrid

Download


 Download source code for Infragistics - Nested Tables in UltraGrid



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


If you like this article, subscribe to our RSS Feed. You can also subscribe via email to our Interview Questions, Codes and Forums section.

Found interesting? Add this to:

| More



Please Sign In to vote for this post.

 
Latest post(s) from Bubbly

Latest Articles
Experience:1 year(s)
Home page:http://www.angeldeeps.blogspot.com
Member since:Monday, September 14, 2009
Level:Bronze
Status: [Member]
Biography:Software Engineer

Submit Article

About Us | The Team | Advertise | Contact Us | Testimonials | Privacy Policy | Terms of Use | Link Exchange | Members | Go Top
General Notice: If you found plagiarised (copied) contents on this page, please let us know the original source along with your correct email id (to communicate) for further action.
Copyright © DotNetFunda.Com. All Rights Reserved. Copying or mimicking the site design and layout is prohibited. Logos, company names used here if any are only for reference purposes and they may be respective owner's right or trademarks. | 9/3/2010 4:11:55 AM