AJAX Tool Kit +ASP.Net
-
Hi All, I am using Ajax toolkit and extenders for asp.net2.0..I have 3 collapsible panels.I want to collapse/expand all the panels on single panel click... Do any one out there has code for that..any idea will be helpful.. Thanks in advance..!!
-
Hi All, I am using Ajax toolkit and extenders for asp.net2.0..I have 3 collapsible panels.I want to collapse/expand all the panels on single panel click... Do any one out there has code for that..any idea will be helpful.. Thanks in advance..!!
<asp:DataList ID="cartview" runat="server" BorderColor="#E0E0E0" BorderStyle="Solid" BorderWidth="1px" CellPadding="0" CellSpacing="0" GridLines="Horizontal" OnItemDataBound="cartview_ItemDataBound" RepeatColumns="1" Width="528px" OnItemCommand="cartview_ItemCommand" ForeColor="Black"> <FooterStyle BackColor="Black" ForeColor="Black" /> <SelectedItemStyle Font-Bold="True" ForeColor="Black" /> <ItemTemplate> <table border="2" bordercolor="black" cellpadding="0" cellspacing="0" style="width: 729px"> <tr> <td style="width: 760px"> <table border="0"> <tr> <td style="width: 760px;"> <asp:Panel ID="pnlExpand" runat="server" BackImageUrl="~/images/bg-menu-main.png" Width="775px"> <div style="vertical-align: middle; cursor: pointer;"> <table width="774" border="1" cellpadding="0" cellspacing="0"> <tr> <td style="width: 90px; height: 30px; padding-left: 5px;" align="left"> <asp:Label ID="lblTxnId" runat="server" ForeColor="White" Text='<%# Eval(
-
Hi All, I am using Ajax toolkit and extenders for asp.net2.0..I have 3 collapsible panels.I want to collapse/expand all the panels on single panel click... Do any one out there has code for that..any idea will be helpful.. Thanks in advance..!!
What's the problem? In the collapse/Expand event, write the logic to expand/collapse all of them at once.
-
What's the problem? In the collapse/Expand event, write the logic to expand/collapse all of them at once.
I have done expand/collapse for each individual panel..But if I add one more panel and click of this I want the rest of the panels to expand/collapse.. Can you provide the code for this.......!