This example demonstrates how to create List
data sources and bind master and detail grids to those data sources.
Overview
Create a List data source for a master grid with an ID
field. Then create a List data source for detail grids. The detail data source contains two fields: ID
and ParentID
. The ParentID
field corresponds to the master data source's ID
field.
C#public static List<Parent> CreateMasterData(int masterRowCount) {
List<Parent> parentList = new List<Parent>();
for (int i = 0; i < masterRowCount; i++) {
parentList.Add(new Parent() {
ID = i,
Name = "Parent" + i.ToString()
});
}
return parentList;
}
public static List<Child> CreateChildData(int childRowCount, int maxMasterIndex) {
List<Child> childList = new List<Child>();
Random r = new Random();
for (int i = 0; i < childRowCount; i++) {
childList.Add(new Child() {
ID = i,
Name = "Child" + i.ToString(),
ParentID = r.Next(maxMasterIndex)
});
}
return childList;
}
In the page's Init
handler, bind the master grid to its data source. In the detail grid's server-side BeforePerformDataSelect event handler, get the master row's key value (the master data source's ID
field) and filter detail data based on this value (the detail data source's ParentID
field). Bind the detail grid to the filtered detail data source.
C#protected void Page_Init(object sender, EventArgs e) {
masterGrid.DataSource = ParentData;
masterGrid.DataBind();
}
protected void detailGrid_BeforePerformDataSelect(object sender, EventArgs e) {
ASPxGridView detailGrid = (ASPxGridView)sender;
int id = (int)detailGrid.GetMasterRowKeyValue();
var result = from q in ChildData
where q.ParentID == id
select q;
detailGrid.DataSource = result;
}
Files to Review
- Data.cs (VB: Data.vb)
- Default.aspx (VB: Default.aspx)
- Default.aspx.cs (VB: Default.aspx.vb)
Documentation
Does this example address your development requirements/objectives?
(you will be redirected to DevExpress.com to submit your response)
Example Code
C#using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace EditableDetails {
public class DataHelper {
public static List<Parent> CreateMasterData(int masterRowCount) {
List<Parent> parentList = new List<Parent>();
for (int i = 0; i < masterRowCount; i++) {
parentList.Add(new Parent() {
ID = i,
Name = "Parent" + i.ToString()
});
}
return parentList;
}
public static List<Child> CreateChildData(int childRowCount, int maxMasterIndex) {
List<Child> childList = new List<Child>();
Random r = new Random();
for (int i = 0; i < childRowCount; i++) {
childList.Add(new Child() {
ID = i,
Name = "Child" + i.ToString(),
ParentID = r.Next(maxMasterIndex)
});
}
return childList;
}
}
public class Parent {
public int ID { get; set; }
public string Name { get; set; }
}
public class Child {
public int ID { get; set; }
public string Name { get; set; }
public int ParentID { get; set; }
}
}
ASPx<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="EditableDetails._Default" %>
<%@ Register Assembly="DevExpress.Web.v24.2, Version=24.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a"
Namespace="DevExpress.Web" TagPrefix="dx" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Untitled Page</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<dx:ASPxGridView ID="masterGrid" runat="server" AutoGenerateColumns="true" KeyFieldName="ID">
<Templates>
<DetailRow>
<dx:ASPxGridView ID="detailGrid" runat="server" AutoGenerateColumns="true"
KeyFieldName="ID" OnBeforePerformDataSelect="detailGrid_BeforePerformDataSelect">
</dx:ASPxGridView>
</DetailRow>
</Templates>
<SettingsDetail ShowDetailRow="True" />
</dx:ASPxGridView>
</div>
</form>
</body>
</html>
C#using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using DevExpress.Web;
using System.Collections.Generic;
using System.Linq;
namespace EditableDetails {
public partial class _Default : System.Web.UI.Page {
public List<Parent> ParentData {
get {
if (Session["ParentData"] == null)
Session["ParentData"] = DataHelper.CreateMasterData(5);
return (List<Parent>)Session["ParentData"];
}
set {
Session["ParentData"] = value;
}
}
public List<Child> ChildData {
get {
if (Session["ChildData"] == null)
Session["ChildData"] = DataHelper.CreateChildData(50, ParentData.Count);
return (List<Child>)Session["ChildData"];
}
set {
Session["ChildData"] = value;
}
}
protected void Page_Init(object sender, EventArgs e) {
masterGrid.DataSource = ParentData;
masterGrid.DataBind();
}
protected void detailGrid_BeforePerformDataSelect(object sender, EventArgs e) {
ASPxGridView detailGrid = (ASPxGridView)sender;
int id = (int)detailGrid.GetMasterRowKeyValue();
var result = from q in ChildData
where q.ParentID == id
select q;
detailGrid.DataSource = result;
}
}
}