Click here to Skip to main content
15,860,861 members
Articles / Web Development / HTML

ASPxGridView master-detail data presentation with context menus

Rate me:
Please Sign up or sign in to vote.
5.00/5 (9 votes)
24 Oct 2012CPOL14 min read 73.7K   2.1K   22   2
A real-life detailed example of usage of DevExpress ASPxGridView control.

This article appears in the Third Party Products and Tools section. Articles in this section are for the members only and must not be used to promote or advertise products in any way, shape or form. Please report any spam or advertising.

Introduction 

As many companies I worked for are using DevExpress controls I decided to write a couple of articles about some real life situations and ways they can be solved by using DevExpress ASP.NET controls Suite. In this and following articles I will show you a couple of techniques on how to achieve a certain behavior that goes slight further than the demo examples that you can find on DevExpress site. I will be using ASP.NET suite of controls, more specifically Web Forms. At the end of the article this is the expected result:

Image 1

Table of contents

  1. What are DevExpress controls?
  2. Requirements
  3. The project
  4. Creating a data source
  5. The web page
  6. Defining a detail grid
  7. Adding a context menu to the detail grid
  8. Programmatically disabling menu items
  9. Aesthetic changes
  10. Downloads and the source code
  11. Notes and other resources

What are DevExpress controls?

A set of controls that enrich your toolbox by adding several controls that are not present in the standard ASP.NET controls and some of the controls that are offered as a good substitute to already existing controls. All of the DevExpress controls are rich by the properties, methods and events both on client and server side, giving you the possibility to achieve results that otherwise will require a lot more extra coding.

Requirements

All of my examples are written for .NET 4.0 with Visual Studio 2010 using the version v2012 vol 1.5 of DevExpress controls. You can find a trial version of the requested controls here DevExpress Demo. Any version of Visual Studio is just fine, from Express to Ultimate. Also you can easily migrate this project to .NET 3.5 if needed. In case that the version of DevExpress controls I used is not available anymore, it should be easy to upgrade the project by DXperience Project Converter. For more information’s on project converter check DevExpress web site.

The project

I will start with the default Visual Studio ASP.NET Web Application. Considering this example just a practice about the UI and the controls itself, I will put no emphases on the data source and just create a super simple data model. We will have two data entities, User and Project. As a cardinality, we have a many-to-many relationship, so one user can be related to many projects as a project can have several users. Also I will create a class called DataService that will create a couple of values that will represent our data. Let’s start!

Creating a data source

First we will create a Project class. In the default constructor we will set the project status property to new. Except for this, we will have three properties, an ID, project name, and a project status.
C#
public class Project
{
    public Project()
    {
        Status = ProjectStatus.New;
    }

    public int ID { get; set; }
    public string Name { get; set; }
    public ProjectStatus Status { get; set; }
}
As you can see, project status is an enumerator, so let’s define it together with other possible project statuses.
C#
public enum ProjectStatus
{
    New,
    InProgress,
    Failed,
    Done
}
Now we will define the user class. It has several properties and one public method. The method returns the number of associated projects of the current customer instance.
C#
public class User
{
    public User()
    {
        Projects = new List<Project>();
    }

    private string m_fullName;

    public int ID { get; set; }
    public string UserName { get; set; }
    public string FirstName { get; set; }
    public string LastName { get; set; }
    public List<Project> Projects { get; set; }

    public string FullName
    {
        get { return string.Format("{0}, {1}", this.LastName, this.FirstName); }
    }

    public bool HasProjects()
    {
        return Projects.Count > 0;
    }
}
This is a very simple model and probably in a real life situation your model will be richer with properties and methods. Next to come is a class that will create several instances of the model classes and return them via a method. In this way we can have easily all the data we need for our example. The code I used is following, you can add other data if in search of a particular behavior.
C#
[DataObject(true)]
public class DataService
{
    [DataObjectMethodAttribute(DataObjectMethodType.Select, true)]
    public static List<User> GetUsers()
    {
        List<User> users = new List<User>();

        users.Add(new User() { ID = 1, UserName = "JohnDoe", FirstName = "John", LastName = "Doe", Projects = GetSomeProjects() });
        users.Add(new User() { ID = 2, UserName = "JimDoe", FirstName = "Jim", LastName = "Doe", });
        users.Add(new User() { ID = 3, UserName = "RobertDoe", FirstName = "Robert", LastName = "Doe", });
        users.Add(new User() { ID = 4, UserName = "AlisonDoe", FirstName = "Alison", LastName = "Doe", Projects = GetSomeProjects2() });

        return users;
    }

    [DataObjectMethodAttribute(DataObjectMethodType.Select, false)]
    private static List<Project> GetSomeProjects()
    {
        List<Project> projects = new List<Project>();

        projects.Add(new Project() { ID = 1, Name = "Test1" });
        projects.Add(new Project() { ID = 2, Name = "Test2", Status = ProjectStatus.Failed });
        projects.Add(new Project() { ID = 3, Name = "Test3" });

        return projects;
    }

    [DataObjectMethodAttribute(DataObjectMethodType.Select, false)]
    private static List<Project> GetSomeProjects2()
    {
        List<Project> projects = new List<Project>();

        projects.Add(new Project() { ID = 4, Name = "Test4" });
        projects.Add(new Project() { ID = 5, Name = "Test5", Status = ProjectStatus.Failed });
        projects.Add(new Project() { ID = 6, Name = "Test6", Status = ProjectStatus.InProgress });

        return projects;
    }
}
Now our data source is ready. The next thing to care of is the web page itself.

The web page

Add the grid by drag dropping the ASPxGridView control in the page. Modify the properties in order to match the following:
ASP.NET
<dx:ASPxGridView ID="gvMaster"  runat="server" AutoGenerateColumns="False" KeyFieldName="ID"
    Width="100%" >
    <Columns>
        <dx:GridViewDataTextColumn FieldName="ID" VisibleIndex="0">
        </dx:GridViewDataTextColumn>
        <dx:GridViewDataTextColumn FieldName="UserName" VisibleIndex="1">
        </dx:GridViewDataTextColumn>
        <dx:GridViewDataTextColumn FieldName="FirstName" VisibleIndex="2">
        </dx:GridViewDataTextColumn>
        <dx:GridViewDataTextColumn FieldName="LastName" VisibleIndex="3">
        </dx:GridViewDataTextColumn>
        <dx:GridViewDataTextColumn FieldName="FullName" VisibleIndex="4">
        </dx:GridViewDataTextColumn>
    </Columns>
</dx:ASPxGridView>
What we did is changing the grids ID to gvMaster, indicating the Key field name by setting the KeyFieldName to “ID” and specifying the columns that will be shown together with mapping a column field name to the desired model property. Now we need to bind the grid and we will do it from the code. In order to be able to show the changes, we will save our data in a session and in order to ease this operation we will create a property that will perform all of this check and operations for us. Get in the page’s code file and declare the following.
C#
public List<User> Users
{
    get
    {
        if (Session["Data"> == null)
            Session["Data"> = DataService.GetUsers();

        return (List<User>)Session["Data"];
    }
    set { Session["Data"> = value; }
}
When the property is requested for the first time, the session item is null, then we will recall the method that we created previously and save the data in the session. This is not a technique that you will use in a real life application, because probably you will recall the data from the database at a certain point and eventually cache it. As explain this is not the goal of this article, I will just mention it. Now it’s time to bind the grid to this property.
C#
protected void Page_Load(object sender, EventArgs e)
{
    if (!IsPostBack)
    {
        gvMaster.DataSource = Users;
        gvMaster.DataBind();
    }
}

If you run the code now you should see the following (or a similar screen, don't worry if the theme that is applied doesn't look the same, we will came to that later).

Image 2

Defining a detail grid

In order to add a detail grid to a master grid, we first need to define a template for the detail row. Inside the aspx file get inside the definition of ASPxGridView and open the <Templates> section then inside the newly created section a new one called <DetailRow>. Close properly both sections. In the Detail Row template add a new ASPxGridView and define as for master grid the columns and some properties. Also do not forget to set the ShowDetailRow property to true. At the end your code should look like this.
ASP.NET
<SettingsDetail ShowDetailRow="True" />
<Templates>
    <DetailRow>
        <dx:ASPxGridView ID="gvDetail"  runat="server" Width="100%" KeyFieldName="ID">
            <Columns>
                <dx:GridViewDataTextColumn FieldName="ID" VisibleIndex="0">
                </dx:GridViewDataTextColumn>
                <dx:GridViewDataTextColumn FieldName="Name" VisibleIndex="1">
                </dx:GridViewDataTextColumn>
                <dx:GridViewDataTextColumn FieldName="Status" VisibleIndex="2">
                </dx:GridViewDataTextColumn>
            </Columns>
        </dx:ASPxGridView>
    </DetailRow>
</Templates>
Now we need to handle the binding of the detail grid. Before that we will check for each row in the master grid if there is the data for the detail grid and if not, hide the plus sign. To achieve that, we need to declare the OnDetailRowGetButtonVisibility event on the master grid. The code of your master grid should look like this
ASP.NET
<dx:ASPxGridView ID="gvMaster"  runat="server" AutoGenerateColumns="False" KeyFieldName="ID"
    Width="100%" OnDetailRowGetButtonVisibility="gvMaster_DetailRowGetButtonVisibility">
In the server side event code we need to check if there are detail data for each master element.
C#
protected void gvMaster_DetailRowGetButtonVisibility(object sender, ASPxGridViewDetailRowButtonEventArgs e)
{
    User currentUser = Users.Find(u => u.ID == (int)gvMaster.GetRowValues(e.VisibleIndex, "ID"));

    if (!currentUser.HasProjects())
        e.ButtonState = GridViewDetailRowButtonState.Hidden;
}
For the less experienced, I will quickly explain this code. In order to get the row value we will use the argument that is passed to the event which contains the currently processing row visible index and with that information retrieve the value of the ID field of that row. The following code gvMaster.GetRowValues(e.VisibleIndex, "ID")) will give us the the value of ID filed for the current row. Then we will retrieve the User class instance for a given ID and check if it has project. In case that this user is not associated to any project we will hide the plus sign (button) for that row with by setting the argument property ButtonState to hidden. Now let's bind detail grid. Each time the user click's on the plus sign, a callback will be automatically generated by the grid and on the server side, binding event for the detail grid will be raised. OnBeforePerformDataSelect event in the detail grid is the right one for indicating the data source on which the current detail grid should be bind. Define the previously mentioned event:
ASP.NET
<dx:ASPxGridView ID="gvDetail"  runat="server" Width="100%" 
    OnBeforePerformDataSelect="gvDetail_BeforePerformDataSelect" KeyFieldName="ID">
And bind the data in that event.
C#
protected void gvDetail_BeforePerformDataSelect(object sender, EventArgs e)
{
    ASPxGridView grid = sender as ASPxGridView;
    int currentUserID = (int)grid.GetMasterRowKeyValue();

    grid.DataSource = Users.Find(u => u.ID == currentUserID).Projects;
}

In order to refer to a proper object we need to cast the sender of the event to a ASPxGridView. Then DevExpress grid comes in our help with GetMasterRowKeyValue() method, which as it's name says, will return the key value of the master grid in which our current detail grid is defined. Whit that value, which is basically the User ID, we can retrieve the necessary data which we will set as a DataSource of the current detail grid. That's it, your master detail grid should work now and this is how it should look like.

Image 3

If your solution is not looking completely the same do not worry, important is that it compiles and shows the data correctly for now. You can see that I'm constantly pointing for the detail grid the current fact. This is important, because we can have multiple detail grid's in the page, so we always need to refer to a proper object. Always think about that when you are working with detail grid.

Adding a context menu to the detail grid

This is a bit more complicated task but as you will see a quite simple way to achieve this. Start with adding a client side event ContextMenu on the detail grid:
ASP.NET
<dx:ASPxGridView ID="gvDetail"  runat="server" Width="100%" OnBeforePerformDataSelect="gvDetail_BeforePerformDataSelect"
   KeyFieldName="ID">
    <Columns>
        <dx:GridViewDataTextColumn FieldName="ID" VisibleIndex="0">
        </dx:GridViewDataTextColumn>
        <dx:GridViewDataTextColumn FieldName="Name" VisibleIndex="1">
        </dx:GridViewDataTextColumn>
        <dx:GridViewDataTextColumn FieldName="Status" VisibleIndex="2">
        </dx:GridViewDataTextColumn>
    </Columns>
    <ClientSideEvents ContextMenu="OnContextMenu" />
</dx:ASPxGridView>
And then defining a menu with couple one item in it (just drag and drop PopupMenu control from the toolbox in the page):
ASP.NET
<dx:ASPxPopupMenu ID="detailContextMenu"  runat="server" ClientInstanceName="detailContextMenu">
    <Items>
        <dx:MenuItem Name="cmdResetTest" Text="Reset Test" ToolTip="Reset Test to New Status">
        </dx:MenuItem>
    </Items>
</dx:ASPxPopupMenu>
With DevExpress controls we can define a client side (JavaScript) events in the aspx page. As on the server side, the will fire behind a certain event. We need to assign a function name that we are planning to execute on client side once the event is fired. Two parameters will be passed to our function, first is the control that generated the event (sender) and the event arguments. Each event and control has it's own arguments. DevExpress controls are very function rich on client side, and you can consult the documentation to check all available client side events, functions and properties. In the following Reference you can check the available client side functionality for the ASPxGridView. If you are interested in the other controls, just browse the interested control namespace that ends with Script. In the page header (or in a separate .js file) define the following function:
JavaScript
<script type="text/javascript">
    function OnContextMenu(s, e) {
        if (e.objectType == 'row') {
            detailContextMenu.ShowAtPos(ASPxClientUtils.GetEventX(e.htmlEvent), ASPxClientUtils.GetEventY(e.htmlEvent));
        }
    }
</script>
In this function we will check if the context menu event is raised on a grid header or on the grid row. If it is a grid row we should popup a context menu. We can refer to the control on the client side by the ClientInstanceName that we defined for that control in the aspx file, this is done in this example. Each time you put a DevExpress control in your page, you will automatically have at your disposition an utility class called ASPxClientUtils containing several methods that can help you reducing your js code. Now each time you right click the detail grid row, a context menu that you defined will be shown. What we are missing is the action that needs to be performed once the user chooses a context menu. In order to achieve this we need to add a client side event to our ASPxPopupMenu.
ASP.NET
<dx:ASPxPopupMenu ID="detailContextMenu"  runat="server" ClientInstanceName="detailContextMenu">
    <Items>
        <dx:MenuItem Name="cmdResetTest" Text="Reset Test" ToolTip="Reset Test to New Status">
        </dx:MenuItem>
    </Items>
    <ClientSideEvents ItemClick="detailContextMenu_ItemClick" />
</dx:ASPxPopupMenu>
There is some more work to do. As we are going to use a callback method of the detail grid to process the action on the server side, we need to find out the right detail grid that needs to be updated. In order to achieve so, we need to modify our previously defined method OnContextMenu.
JavaScript
<script type="text/javascript">
    var currentDetailGrid;
    var currentVisibleIndex;

    function OnContextMenu(s, e) {
        if (e.objectType == 'row') {
            currentDetailGrid = s;
            currentVisibleIndex = e.index;

            detailContextMenu.ShowAtPos(ASPxClientUtils.GetEventX(e.htmlEvent), ASPxClientUtils.GetEventY(e.htmlEvent));
        }
    }
</script>
What we did here is to save a reference to a detail grid and current visible index (row index on which the mouse was positioned when user right clicked) so we can reused it the Popup ItemClick event that we are going to define:
JavaScript
<script type="text/javascript">
    function detailContextMenu_ItemClick(s, e) {
        if (e.item.name == 'cmdResetTest') {
            currentDetailGrid.PerformCallback(currentVisibleIndex);
        }
    }
</script>
Once the menu item is chosen we will check if the item is the right one (this is useful if we have several items and we need to perform different actions based on chosen item) then request a callback for the grid on which user is operating right now. We will pass the current visible index as a parameter so we can spot the right element on which we are trying to apply our action. Before we can declare this server side event, we need to specify it in the aspx file:
ASP.NET
<dx:ASPxGridView ID="gvDetail"  runat="server" Width="100%" OnBeforePerformDataSelect="gvDetail_BeforePerformDataSelect"
     önCustomCallback="gvDetail_CustomCallback" KeyFieldName="ID">
And than manage this event on server side:
C#
protected void gvDetail_CustomCallback(object sender, ASPxGridViewCustomCallbackEventArgs e)
{
    ASPxGridView grid = sender as ASPxGridView;

    int projectID = (int)grid.GetRowValues(int.Parse(e.Parameters), "ID");
    int currentUserID = (int)grid.GetMasterRowKeyValue();

    List<Project> projects = Users.Find(u => u.ID == currentUserID).Projects;
    projects.Find(p => p.ID == projectID).Status = ProjectStatus.New;

    grid.DataSource = projects;
    grid.DataBind();
}
As before, for simplicity we will cast the sender argument to ASPxGridView variable called grid. Then we will retrieve the ID of the project that was selected. The argument we passed before on client side to the PerformCallback function will come handy right now as it will store the necessary data in order to find the interested project (by parsing the e.Parameters property). Next value we need to get is the user ID for which this detail grid is showing the associated projects. We can get it by a handy server side method GetMasterRowKeyValue() which will return a key value of the master grid (as you rememer we defined as a KeyFieldName the ID property of interested entities). Now, once we have the necessary data we can perform the desired actions and rebind the detail grid. You can now add different actions in the Popup menu and manage them by passing a qualifier in the argument, parsing the argument and performing different operations. You will see this technique in my next blog post, stay tuned.

Programmatically disabling menu items

Unfortunately in this example the user can choose to reset the status of projects that are not in an invalid state. In order to disable the menu item if the state is not "resetable" we will need to make some changes in our code non less passing more information to client side. Before modifying the JavaScript we will make some considerations. In order to disable an item in the menu, we need to know the condition on which to do it. We can say that the Reset item needs to be disable when the project status is New. This status information we need to pass to the client side somehow. One way to achieve this is to store the status information together with the key value in a custom property. All the DeExpress controls have the possibility to easily add information from server side that will be brought and exposed on client side. This feature is called Custom Properties and you can find more information's about them here. My technique is to save the Dictionary element to a custom property which will be seen as an array from JavaScript. All what I'm saying may sound confusing, so let's see an real example. First of all we will subscribe to OnHtmlRowCreated event. Modify the detail grid in the following way:
ASP.NET
<dx:ASPxGridView ID="gvDetail"  runat="server" Width="100%" OnBeforePerformDataSelect="gvDetail_BeforePerformDataSelect"
    OnCustomCallback="gvDetail_CustomCallback"  önHtmlRowCreated="gvDetail_HtmlRowCreated" KeyFieldName="ID">
Then write down the following code:
C#
protected void gvDetail_HtmlRowCreated(object sender, DevExpress.Web.ASPxGridView.ASPxGridViewTableRowEventArgs e)
{
    if (e.RowType != GridViewRowType.Data) return;

    ProjectStatus status = (ProjectStatus)e.GetValue("Status");
    ASPxGridView grid = sender as ASPxGridView;

    if (grid.JSProperties.ContainsKey("cpStatus"))
    {
        Dictionary<int, ProjectStatus> values = (Dictionary<int, ProjectStatus>)grid.JSProperties["cpStatus"];

        if (values.ContainsKey(e.VisibleIndex))
        {
            values[e.VisibleIndex] = status;
        }
        else
        {
            values.Add(e.VisibleIndex, status);
        }

        grid.JSProperties["cpStatus"] = values;
    }
    else
    {
        Dictionary<int, ProjectStatus> values = new Dictionary<int, ProjectStatus>();
        values.Add(e.VisibleIndex, status);

        grid.JSProperties.Add("cpStatus", values);
    }
}
This code can seem complex but it isn't. For each row that is going to be rendered I'm getting it's visible index value, checking if I already have that value in my Dictionary type variable. If not, I'm adding a new item to my Dictionary together with it's status. If changed, I'm persisting the new value to a custom JS property of the grid. This now means that I can easily retrieve this information's on client side. Modify your OnContextMenu function in the following way:
JavaScript
<script type="text/javascript">
    function OnContextMenu(s, e) {
        if (e.objectType == 'row') {
            var cmdResetTest = detailContextMenu.GetItemByName('cmdResetTest');
            cmdResetTest.SetEnabled(s.cpStatus[e.index] != 'New');

            currentDetailGrid = s;
            currentVisibleIndex = e.index;

            detailContextMenu.ShowAtPos(ASPxClientUtils.GetEventX(e.htmlEvent), ASPxClientUtils.GetEventY(e.htmlEvent));
        }
    }
</script>
We first need to retrieve the menu item then set the enable property based on custom JS property value. That's all, try your code, it should work.

Aesthetic changes

In order to make your solution look like mine, you will also need to set the theme and a couple of other properties that I will explain here. First of all the theme. DevExpress control ships with a several themes, check the following web page for more details on how to deploy a theme to your solution. I applied the Acqua theme by importing the necessary files to my solution and changing the web.config in the following way (if not present add the following code inside the system.web section):
ASP.NET
<pages theme="Aqua">
</pages>
I also added to both grids the title panel and the title itself:
ASP.NET
<Settings ShowTitlePanel="True" />
<SettingsText Title="Master Grid / Detail for detail grid" />
In order to make a clicked row visually different I also enabled the AllowFocusedRow property. As it will set focus only on left mouse click, I also modified my JS OnContextMenu function, so it will get focused also on the right mouse click:
JavaScript
<script type="text/javascript">
    function OnContextMenu(s, e) {
        if (e.objectType == 'row') {
            s.SetFocusedRowIndex(e.index);
            var cmdResetTest = detailContextMenu.GetItemByName('cmdResetTest');
            cmdResetTest.SetEnabled(s.cpStatus[e.index] != 'New');

            currentDetailGrid = s;
            currentVisibleIndex = e.index;

            detailContextMenu.ShowAtPos(ASPxClientUtils.GetEventX(e.htmlEvent), ASPxClientUtils.GetEventY(e.htmlEvent));
        }
    }
</script>
The EnableRowHotTrack was also enabled so the grid displays the hot tracked row (a row located under the mouse pointer). You can read more about all these properties on DevExpress site.

Downloads and the source code

You can find the source code of my project for download here.
You can find a trial version of the requested controls here.

Notes and other resources

If a specific version of the controls is not available, you can upgrade this project to the latest version of controls. Use DevXperience Project Converter Tool for upgrading the project. Read more on how to use this tool in the following blog post. You can find other examples on Master-Detail functionality on DevExpress site. This is Master-Detail - Detail Grid example, and the following is the usage of a tab control inside the detail row template. In the DevExpress support site you will find several examples with the source code on different techniques this link will show you the solutions for a specific master-detail challenges. Till the next article! Cheers!

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
Netherlands Netherlands
An accomplished software engineer specialized in object-oriented design and analysis on Microsoft .NET platform with extensive experience in the full life cycle of the software design process.
Experienced in agile software development via scrum and kanban frameworks supported by the TFS ALM environment and JIRA. In depth know how on all automation process leading to continuous integration, deployment and feedback.
Additionally, I have a strong hands-on experience on deploying and administering Microsoft Team Foundation Server (migrations, builds, deployment, branching strategies, etc.).

Comments and Discussions

 
QuestionFiltering the Gridview in the Detailrow ? Pin
Kris Degruytere2-Oct-13 9:44
Kris Degruytere2-Oct-13 9:44 
GeneralMy vote of 5 Pin
Anurag Sarkar7-Jan-13 2:49
Anurag Sarkar7-Jan-13 2:49 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.