Create new account I forgot my password    

Creating CollapsiblePanelExtender Functionality using ASP.NET and jQuery
Rating: 22 user(s) have rated this article Average rating: 4.5
Posted by: Suprotim Agarwal, on 12/6/2008, in category "jQuery and ASP.NET"
Views: this article has been read 36025 times
Abstract: In this article, we will see how to use ASP.NET and jQuery to build functionality similar to what the ASP.NET AJAX CollapsiblePanelExtender provides.

Creating CollapsiblePanelExtender Functionality using ASP.NET and jQuery
 
I had recently written an article ASP.NET AJAX CollapsiblePanelExtender - Tips and Tricks which showed how to use the ASP.NET AJAX CollapsiblePanelExtender control to easily add collapsible sections to your web page. In this article, I will show you how to create a similar functionality using jQuery with ASP.NET. Ever since I have been introduced to jQuery by one of my colleagues Govind Kanshi (Microsoft), I have been experimenting with jQuery and plan to share my work with my readers. This article is one such experiment that I did with ASP.NET and jQuery.If you are just getting started with jQuery, check this: Using jQuery with ASP.NET - A Beginner's Guide. Let us get started.
Open Visual Studio 2008 > File > New > Website > Choose ‘ASP.NET 3.5 website’ from the templates > Choose your language (C# or VB) > Enter the location > Ok. In the Solution Explorer, right click your project > New Folder > rename the folder as ‘Scripts’.
Right click the Scripts folder > Add Existing Item > Browse to the path where you downloaded the jQuery library (jquery-1.2.6.js) and the intellisense documentation (jquery-1.2.6-vsdoc.js) > Select the files and click Add.
Now drag and drop the jquery-1.2.6.js file from the Solution Explorer on to your page to create a reference as shown below
jQuery Ref
Add two panel controls (<asp:panel >) to the page. Rename them to ‘pHeader’ and ‘pBody’ respectively.
<body>
    <form id="form1" runat="server">
    <div>
            <asp:Panel ID="pHeader" runat="server" CssClass="cpHeader">
                <asp:Label ID="lblText" runat="server" />
            </asp:Panel>
 
            <asp:Panel ID="pBody" runat="server" CssClass="cpBody">
                Lorem ipsum dolor sit amet, consectetur adipisicing elit,
                sed do eiusmod tempor incididunt ut labore et dolore magna
                aliqua. Ut enim ad minim veniam, quis nostrud exercitation
                ullamco laboris nisi ut aliquip ex ea commodo consequat.
                Duis aute irure dolor in reprehenderit in voluptate velit
                esse cillum dolore eu fugiat nulla pariatur
            </asp:Panel>
    </div>
    </form>
</body>
</html>
Observe that we have set the CssClass on the two panels to add some styling to the controls. The CSS will look similar to the following:
<head runat="server">
    <title>Collapsible Panel Extender using jQuery</title>
 
    <script src="Scripts/jquery-1.2.6.js" type="text/javascript"></script> 
 
   
     <style type="text/css">
        .cpHeader
        {
            color: white;
            background-color: #719DDB;
            font: bold 11px auto "Trebuchet MS", Verdana;
            font-size: 12px;
            cursor: pointer;
            width:450px;
            height:18px;
            padding: 4px;           
        }
        .cpBody
        {
            background-color: #DCE4F9;
            font: normal 11px auto Verdana, Arial;
            border: 1px gray;               
            width:450px;
            padding: 4px;
            padding-top: 7px;
        }      
    </style>
The final step is to add collapsible behavior to the panels, similar to what the ASP.NET CollapsiblePanelExtender provides.
Add the following jQuery:
<head runat="server">
    <title>Collapsible Panel Extender using jQuery</title>
 
    <script src="Scripts/jquery-1.2.6.js" type="text/javascript"></script>
   
    <script type="text/javascript">
        $(document).ready(function() {
            $('#pHeader').click(function() {
                $('#pBody').slideToggle('slow');
            });
        });
   
    </script>
   
When the user clicks the header panel (pHeader), we run a function which toggles the visibility of ‘pBody’ by adjusting its height in a ‘sliding’ manner. You can choose one of the three predefined speeds: slow, normal or fast. The speed can also be defined by specifying the number of milliseconds.
Run the application and click on the header panel to toggle the visibility of the panel body as shown below:
On page load:
Load
When the user clicks on the header panel to collapse the body(pBody):
Toggle1
pBody in a collapsed state
Toggle2
User clicks on the header panel to expand the body:
Load again
And that’s all is required to create a functionality similar to the CollapsiblePanelExtender. Simple yet powerful! And that’s what jQuery is all about. I hope you liked the article and I thank you for reading it. 
 If you liked the article,  Subscribe to my RSS Feed or Subscribe Via Email









Page copy protected against web site content infringement by Copyscape


How would you rate this article?

User Feedback
Comment posted by Soeren on Thursday, January 22, 2009 6:14 AM
Cool example. I just tried it in a project I'm working on, and it works great. How ever, I downloaded the newest jQuery version 1.3.1, and the slideToggle seems to have a different behavior. It collapses from top to bottom, like an accordion. As soon as I referenced version 1.2.6 again, it worked as it should...
Comment posted by Soeren on Thursday, January 22, 2009 6:17 AM
What I meant was, in 1.3.1, it collapses from top and bottom into the middle, creating an accordion style collapse...
Comment posted by Soeren on Thursday, January 22, 2009 6:36 AM
What I meant was, in 1.3.1, it collapses from top and bottom into the middle, creating an accordion style collapse...
Comment posted by surendra on Thursday, January 22, 2009 8:41 AM
dsfdfdf
Comment posted by BJ on Thursday, January 22, 2009 11:29 AM
nice example, thanks for the example. in the same whay do you have any idea how to implement supressPostBack though JQuery.
Comment posted by Suprotim Agarwal on Thursday, January 22, 2009 11:50 AM
Soeren: Thanks for your comments. I will try it out at my end to study the behaviour

BJ: In order to prevent a postback, you can use this simple line of code. I assume a postback occurs in your form on a button click

Button1.Attributes.Add("onclick", "CallToJSFunction(); return false;")
Comment posted by BJ on Thursday, January 22, 2009 12:30 PM
Suprotim, thanks for your replay, but let me give you brif idea. I am Using Nested Listview control (3 Level)for collaps/expand feature. but i m not using colepsible pannel but using javascript. now once i change the dropdownlist it should maintain the client state. if i use collepsible pannel with supresspostback = true then it can be done. but i m strugling to do this way so i thought i can just implement supresspostback event throgh jScript then i can maintain client state after postback.
Comment posted by Andrew on Tuesday, February 03, 2009 1:26 AM
Best
Comment posted by sandy on Thursday, March 12, 2009 10:53 AM
Hey where can i downlaod the jquery file?please tell me
Comment posted by Suprotim Agarwal on Sunday, March 15, 2009 1:41 AM
Sandy: I have posted a link in the first para of the article that explains it all
http://www.dotnetcurry.com/ShowArticle.aspx?ID=231
Comment posted by kamrul on Saturday, May 23, 2009 10:52 AM
Pls help????when i set vertical scroll true in pBody and insert a gridview within this panel, then for the first times it shows the scroll but when i click for collapse in and out then it removes the scroll, what is the solution???

Post your comment
Name:
E-mail: (Will not be displayed)
Comment:
Insert Cancel

NEWSLETTER