Click here to Skip to main content
15,881,882 members
Articles / Web Development / ASP.NET
Article

Expandable panel inside a GridView

Rate me:
Please Sign up or sign in to vote.
4.82/5 (48 votes)
28 Sep 2008CPOL3 min read 301.9K   12.6K   204   87
Another way to expand a detail panel inside a GridView.

Image 1

Introduction

A few weeks ago, a client asked me: "We need a simple listing, and we need to click and see details, inside the listing - not a pop-up - not another page - not reloading the entire page". I started to search, read, test. I found some interesting articles and samples, but not exactly what my client wanted. Then, I thought: I can merge some solutions and, maybe, satisfy the customer. The AJAX DynamicPopulate extender offers the mechanism. Let's open the sources and learn. Some interesting articles present some good ideas. Let's read and learn.

I would like to share the results of that work in this article.

You can see the sample project running (with simulated data only) here.

Background

When the AJAX DynamicPopulate extender is started, it calls a method on some page or web service, receives some results, and fills a control.

We can use a JavaScript function to start the extender, and we can capture the results and fill another control. The JavaScript function is activated when the user clicks the button, in the first column of the grid.

Using the Code

The main page has a GridView with three columns: an image that mimics a button to show and hide details, the name of the store, and the sum of the sales value.

The scenario is the Adventure Works Cycles, the fictitious large, multinational manufacturing company. The grid shows the top stores. When the user clicks a button, a panel is expanded and the top five models are displayed.

The onclick event of the image/button calls a JavaScript function (ExpandModels) with these parameters: customer ID, row of the grid view, destination panel, and the button clicked.

C#
// Default.aspx.cs :
protected void gridStores_RowDataBound(object sender, GridViewRowEventArgs e) {
...
Image btn = gridViewRow.FindControl("imgModel") as Image;

btn.Attributes["onClick"] = String.Format(CultureInfo.InvariantCulture,
    "ExpandModels('{0}', '{1}', '{2}', '{3}');",
    contextKey,             // customerID + some data
    newRow.ClientID,        // Row of gridview, below the row that was clicked
    internalPanel.ClientID, // Destination panel, wich will receive the details
    btn.ClientID);          // The clicked button
...
}

The JavaScript function ExpandModels does some preparations, and starts the populate method of the 'behavior' dpBehaviorMod of the DynamicPopulate extender, passing the customer ID. The 'behavior' will send a callback to the WebMethod ExpandModelsService, which will build an HTML table and send it back to the browser.

JavaScript
// ExpandPanel.js :
var expPainelId    = '';  // ID of the internal panel where the details will be inserted
var expPainelAuxId = 'painelAux';  // Receives the results from the WebMethod

function ExpandModels(customerId, trId, painelId, buttonId) {
...
var tr = $get(trId).style;
tr.display='block';                         // Shows the panel ('table-row' for Firefox)
lastBehavior = $find('dpBehaviorMod');
expPainelId = painelId;
lastBehavior.add_populated(ShowTopModels);  // Sets the handle
lastBehavior.populate(customerId);          // Calls the WebMethod
}

<!-- Default.aspx -->
<cc1:DynamicPopulateExtender ID="dinPopMod"
                             runat="server"
                             BehaviorID="dpBehaviorMod"
                             CacheDynamicResults="false"
                             ClearContentsDuringUpdate="true"
                             EnableViewState="False"
                             ServiceMethod="ExpandModelsService"
                             TargetControlID="painelAux">
</cc1:DynamicPopulateExtender>

<asp:Panel ID="painelAux"
           runat="server"
           EnableViewState="false"
           Style="background-image:url('img/loading.gif'); 
                  background-repeat: no-repeat; display: none">
</asp:Panel>

When the extender returns, it fills the auxiliary panel 'painelAux' (indicated by the property TargetControlID), then another JavaScript function (ShowTopModels) copies the result into the destination panel. The panel ID is saved in the variable expPainelId by the function ExpandModels.

JavaScript
// ExpandPanel.js :
function ShowTopModels(s, e) {
    // The internal panel where the details will be inserted
    var p1 = $get(expPainelId);
    // The aux panel filled by the DynamicPopulateExtender
    var p2 = $get(expPainelAuxId);
    ...
    // Details HTML table
    p1.innerHTML = p2.innerHTML;
    ...
}

Inside the web method, the program builds a simple HTML table with the details.

C#
[System.Web.Services.WebMethod]
[System.Web.Script.Services.ScriptMethod]
public static string ExpandModelsService(string contextKey) {
...
    StringBuilder sb = new StringBuilder("<table class = 'tab-mod'> \n"
    + "<tr> \n"
    + "<th>Model</th> \n"
    + "<th>Qty</th> \n"
    + "<th>Total price</th> \n"
    + "<th>Last sale</th> \n"
    + "</tr> \n",
    topModels.Count * 180);
...
    sb.Append("<tr> \n");
    sb.AppendFormat(CultureInfo.CurrentCulture,
        "<td>{0}</td> ",
        modelRow.Name);
...
    sb.Append("</table> \n");

    return sb.ToString();
}

The above code snippets were extracted from the sample project and simplified. The full source code is available for download.

Points of Interest

When the page is sent to the browser, only the main listing will be sent (stores). The models will be sent dynamically when the user clicks the button on each row. We could use another approach to load all the data during the first time and hide/show at the onclick event. That approach could cause a long time to load the entire page.

The 'loading.gif' file is pre-loaded by the panel 'painelAux', to speed the display when the user clicks the button.

I included the WebMethod ExpandModelsService inside 'Default.aspx'. If the project contains a lot of WebMethods, we can create one or more 'asmx' files to help us to organize the project.

Conclusion

If this article can help you in any form, I will be happy.

Certainly, you can find many mistakes, bugs, and not-so-good code in the sample project. I thank you in advance for tips, suggestions, and corrections.

References

There are many good articles already written on this subject:

License

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


Written By
Software Developer Ápex Logik D'ata
Brazil Brazil
Born and lives in São Paulo - Brasil.
Programmer since 1982, and in 'tailor' mode since 1995, I had the oportunity to work for many kinds of business.
Today I create Windows Forms applications, Web projects and Palm OS applications.
My experience :
Languages : Cobol, Fortran, Basic, Clipper, Turbo Pascal, Data Flex, C, C++, Turbo C++, Borland C++ Builder, C#, Javascript.
DBMS : Adabas, DBF, Paradox, MS Access, DB2, Oracle, MS SQL Server.
I Know and experienced a little : Natural, Prolog, Lisp, Assembly IBM/370, Assembly Z80, Assembly 8080, MS Visual Basic (5/6).

Comments and Discussions

 
QuestionIs there someone like this control in .NET WinForm? Pin
weberypf15-Aug-11 23:11
weberypf15-Aug-11 23:11 
AnswerRe: Is there someone like this control in .NET WinForm? Pin
AmauriRodrigues17-Aug-11 1:27
AmauriRodrigues17-Aug-11 1:27 
GeneralVB Way Pin
Hernan K. Cabrera30-Apr-11 23:44
Hernan K. Cabrera30-Apr-11 23:44 
GeneralRe: VB Way Pin
AmauriRodrigues17-Aug-11 1:32
AmauriRodrigues17-Aug-11 1:32 
GeneralWorks fine but not inside tabpanel control Pin
Member 447272129-Mar-11 8:28
Member 447272129-Mar-11 8:28 
GeneralMy vote of 5 Pin
Rajesh Kumar Chekuri4-Mar-11 0:28
Rajesh Kumar Chekuri4-Mar-11 0:28 
GeneralMy vote of 5 Pin
Burak Ozdiken1-Mar-11 11:20
Burak Ozdiken1-Mar-11 11:20 
QuestionProblem using Panel within a Master Page [modified] Pin
Brian Davidson9-Jan-11 14:21
Brian Davidson9-Jan-11 14:21 
Hi,

The problem I have occurs when using a MasterPage/ContentPage. When execution gets to " var p2 = $get('painelAux'); " in the expandpanel.js file, it always returns "null".

To get it to work I had to code it as: " var p2 = $get('ctl00_ContentPlaceHolder1_painelAux'); ". There should be a better to reference the panel control from a content page but I have not been able to figure it out.

Any help here would be greatly appreciated.

Thanks!



-- Modified Monday, January 10, 2011 2:36 PM
AnswerRe: Problem using Panel within a Master Page Pin
mini11930-Jun-11 23:18
mini11930-Jun-11 23:18 
GeneralRe: Problem using Panel within a Master Page Pin
mini11930-Jun-11 23:30
mini11930-Jun-11 23:30 
GeneralPerforming a similar task in C# Pin
SGall_Merc18-Oct-10 6:25
SGall_Merc18-Oct-10 6:25 
Questionhow to change the sample to link to sql server Pin
linuxsuperfans12-Aug-09 5:20
linuxsuperfans12-Aug-09 5:20 
AnswerRe: how to change the sample to link to sql server Pin
AmauriRodrigues17-Aug-09 12:35
AmauriRodrigues17-Aug-09 12:35 
GeneralWhen you click on plus (+) image all of them disappear. Pin
rogercute20026-Aug-09 18:11
rogercute20026-Aug-09 18:11 
GeneralRe: When you click on plus (+) image all of them disappear. Pin
AmauriRodrigues17-Aug-09 12:41
AmauriRodrigues17-Aug-09 12:41 
QuestionUsing XML file Pin
MohammadALNajjar30-Apr-09 17:15
MohammadALNajjar30-Apr-09 17:15 
GeneralSorting Pin
nuno_senica30-Mar-09 10:04
nuno_senica30-Mar-09 10:04 
GeneralRe: Sorting Pin
AmauriRodrigues30-Mar-09 12:51
AmauriRodrigues30-Mar-09 12:51 
GeneralRe: Sorting Pin
nuno_senica30-Mar-09 13:18
nuno_senica30-Mar-09 13:18 
Generalpls i am urgent regarding this Pin
omerqq11-Mar-09 13:40
omerqq11-Mar-09 13:40 
GeneralRe: pls i am urgent regarding this Pin
AmauriRodrigues12-Mar-09 3:34
AmauriRodrigues12-Mar-09 3:34 
Generali dont know how to use json .. Pin
omerqq20-Mar-09 20:24
omerqq20-Mar-09 20:24 
GeneralRe: i dont know how to use json .. [modified] Pin
AmauriRodrigues21-Mar-09 13:13
AmauriRodrigues21-Mar-09 13:13 
GeneralRe: pls i am urgent regarding this Pin
Marty Spallone13-Dec-11 15:39
Marty Spallone13-Dec-11 15:39 
Questionuser control expands from gridview Pin
omerqq10-Mar-09 3:13
omerqq10-Mar-09 3:13 

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.