Click here to Skip to main content
15,879,535 members
Articles / Web Development / ASP.NET

GridView-DetailsView (Master/Detail) Control

Rate me:
Please Sign up or sign in to vote.
3.21/5 (22 votes)
24 Feb 2009CPOL4 min read 236.5K   12.4K   61   5
Full-featured GridView-DetailsView with View/Insert/Update features
Sample Image - screen0.jpg

Introduction

The GridViewDetailsView control is an ASP.NET user control that displays a fully-featured GridView-DetailsView (Master/Detail) Control with the capability to edit existing records, insert new records, and delete records, along with sorting, filtering, and paging. The control can be easily configured to allow record inserting/editing in the GridView control or in the DetailsView control after a record is selected.

This control demonstrates some of the clearer ways of editing, inserting, and deleting records with a Master/Detail control in an N-Tier environment, in which data objects and business objects are used with a GridView-DetailsView to load and store data.

Background

I recently had a project in which I needed to manage some datatables via gridviews, but the number of columns in the table was too large to be handled nicely with in-grid editing. After looking into the new DetailsView control, I found that it would meet the requirements, except that it provided no decent mechanism to navigate to other records, other than by paging. Coupling the GridView together with a DetailsView control presented a good solution to the problem.

When I Googled around for samples on having a GridView work together with a DetailsView control, I would find a code snippet here and there that did part of what I needed, but few real-world examples of the two controls together. This article/control is an attempt in providing such a solution.

Using the GridViewDetailsView UserControl

To use the GridViewDetailsView UserControl in a web project, drop a copy of the control (both the HTML and code file) into your web project and change the name/class of the control to meet your needs. The columns and handling of the GridViewDetailsView's controls in the sample source are intentionally left in for the coder to easily copy/remove/modify the fields as quickly as possible, without having to start from scratch. The columns and controls demonstrate the handling of different field types and controls, most of which are common when working with database tables and stored-procs.

In the code file, substitute your own business/data layer to load and save the GridViewDetailsView fields/records. Many of the supporting functions in the class can be used with any business/data object, and just a specific handful of lines of code need to be modified/removed.

To reference the control from another UserControl or a Page, don't forget to call the class's Initialize() function to set the properties for the control. You can also set the various properties in the HTML and code file to enable or disable record-editing, record-inserting, sorting, paging, etc. along with whether you want the record-editing to be performed in the DetailsView or the GridView control.

NOTE: This control is not meant to be a stand-alone, snap-in UserControl - the intention of it is to be used as almost a "starter kit" when working with a GridViewDetailsView. Enhance the sections you need to use, and throw away the parts you don't need.

Before running the sample demonstration, run the Orders_SPs.sql file against the Northwind database.

NOTE #2: Due to the foreign key constraint between the Orders table and the Order Details table in the Northwind database, the Delete command throws an exception from the data layer. Otherwise, the delete command works as expected.

Below is a demonstration of several of the different views in the GridViewDetailsView sample:

Basic View of the GridView Control

GridView View

Editing a Record in the GridView Control

GridView Editing

Inserting a Record in the GridView Control

GridView Inserting

Basic View of the DetailsView Control

DetailsView View

Editing a Record in the DetailsView Control

DetailsView Editing

Inserting a Record in the DetailsView Control

DetailsView Inserting

How the GridViewDetailsView Control Works

The GridViewDetailsView control is basically just an instance of a GridView control and the DetailsView control wrapped within a single user control, which exposes a number of properties that can be used to enable/disable various features. The GridView control and the DetailsView control are both on separate panels, only one of which is visible at any given time.

The DetailsView panel is hidden by default, and when a record is selected in the GridView, the record is bound to the DetailsView control and the views are swapped, so the GridView panel is hidden while the DetailsView panel is made visible. The user can return to the GridView display at any time by clicking the "Return to OrdersList" link button.

Below are some of the more useful code-snippets used in the control to read/write data between the business objects and the GridView control and the DetailsView control.

C#
/// <summary>
/// Initialize the member variables and bind the gridview/detailsview
/// </summary>
public void Initialize()
{
    AllowRecordSorting = true;
    AllowRecordDeleting = true;
    AllowRecordEditing = true;
    AllowRecordInserting = true;
    AllowRecordSelection = true;
    AllowEditInDetailsView = true;

    ClearDataViews();
    BindDataViews();

    ShowFooterInsertControls(false);
}
...
...
...

/// <summary>
/// Sets the new ViewMode for the control and updates the display accordingly
/// </summary>
C#
protected void SetBehavior(ViewMode vmNewViewMode)
{
    m_ViewMode = vmNewViewMode;
    SetBehavior();
}

/// <summary>
/// Handles the display of the gridview/detailsview controls 
/// according to the ViewMode
/// </summary>
protected void SetBehavior()
{
    bool bHasGridRows = (gvOrders.Rows.Count > 0);
    if ((bHasGridRows == false) && (AllowRecordInserting == true))
    {
        m_ViewMode = ViewMode.DetailsView;
    }

    switch (m_ViewMode)
    {
        case ViewMode.Unknown:
            pnlGridView.Visible = bHasGridRows;
            pnlDetailsView.Visible = !bHasGridRows;
            break;
 
        case ViewMode.GridView:
            pnlGridView.Visible = true;
            pnlDetailsView.Visible = false;
            break;

        case ViewMode.DetailsView:
            pnlGridView.Visible = false;
            pnlDetailsView.Visible = true;
            break;
    }

    lbtnReturnToOrdersList.Visible = bHasGridRows;
}

/// <summary>
/// Clears out the binding of the old data
/// </summary>
protected void ClearDataViews()
{
    gvOrders.DataSource = null;
    gvOrders.DataBind();
 
    dvOrders.DataSource = null;
    dvOrders.DataBind();
}
    
/// <summary>
/// Binds the gridview/detailsview controls - this overload will display the 
/// records in a gridview
/// </summary>
protected void BindDataViews()
{
    BindDataViews(0);
}

/// <summary>
/// Binds the gridview/detailsview controls - if primarykey is specified, 
/// the details view is used        
/// </summary>
/// 
protected void BindDataViews(int _OrderID)
{
    CIF.Business.Northwind.Orders _Orders = new CIF.Business.Northwind.Orders();
    DataTable dtOrders = null;

    if (_OrderID > 0)
    {
        dtOrders = _Orders.GetDataTable("OrderID", _OrderID.ToString());
        dvOrders.DataSource = dtOrders;
        dvOrders.DataBind();
        SetBehavior(ViewMode.DetailsView);
    }
    else
    {
        dtOrders = _Orders.GetDataTable();
        if (dtOrders.Rows.Count > 0)
        {
            DataView dv = dtOrders.DefaultView;
            if ((SortExpression != string.Empty) && (SortDirection != string.Empty))
                dv.Sort = SortExpression + " " + SortDirection;
    
            gvOrders.DataSource = dv;
            gvOrders.DataBind();
        }
        else
        {
            if (AllowRecordInserting == true)
            {
                 dvOrders.DataSource = dtOrders;
                 dvOrders.DataBind();                        
            }
            else
            {
                 gvOrders.DataSource = null;
                 gvOrders.DataBind();
            }
        }

        SetBehavior();
    }
}

/// <summary>
/// Display the insert/cancel controls appropriately according to the boolean
/// </summary>
/// 
protected void ShowFooterInsertControls(bool bShowControls)
{
    lbtnInsertOrders.Visible = bShowControls;
    lbtnCancelInsertOrders.Visible = bShowControls;
    gvOrders.ShowFooter = bShowControls;
    lbtnAddNewOrders.Visible = (bShowControls == false);

    BindDataViews();
} 

Conclusion

I hope you find this article and control useful - it's saved me a lot of time when working with several different types of tables and datasets, and quickly getting a full-featured GridView-DetailsView (Master/Detail) control up and running. Enjoy!

License

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


Written By
Software Developer
United States United States
SOFTWARE: Chris Hambleton is a Software Developer with proven experience in developing both web and Windows client-server applications with WPF, ASP.NET, C#, SQL Server, VB.NET, Visual C++, and VB6.

Chris's website is at ChrisHambleton.com and he has a small web-hosting/consulting business called CustomersInFocus.com. He has several other websites such as EzekielWatch.com, iWriterPro.com, and BookBlitzer.com.

WRITING: He has also written several fiction books ("The Time of Jacob's Trouble" and "Endeavor in Time"), available at CWHambleton.com and of course, at Amazon.com (Full Amazon Profile).

Comments and Discussions

 
GeneralMy vote of 1 Pin
ITSTH14-Apr-10 0:12
ITSTH14-Apr-10 0:12 

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.