AJAX :: How To Generate Multiple Collapsible Panels Depending On Button Clicked

Feb 20, 2011

I would like to make a table with 2 columns. The first column would have 4 buttons, and when you click on one of the buttons, some

collapsible panels would appear in the right column. These could be populated from a database. When you see a collapsible panel, it

would have only a few lines of text, but when you clicked the title at the top of the text (still in the panel) the panel would expand.

Is this possible with drag and drop controls, or does it need real programming on my part?

View 1 Replies


Similar Messages:

AJAX :: Collapsible Panels With Validation

Oct 22, 2010

Just setup the collapsible panels, there are different fields within the panels that are required. When i submit the page, i get my validation summary, but if the panels are closed, then i cant tell which fields are failing.. so i wou,ld have to open each panel up again to see where i missed something. Is there anyway to have the panels open up if there are any controls that failed validation?

View 2 Replies

AJAX :: Collapsible Panels With Extender

Jul 6, 2010

I have 2 collapsible panel. The first panel is expanded by default and second panel is collapsed. When I insert a user control in the first panel (about 650px height) it displays it but the content overflows into second panel header. I have autosize to none and height to 0px in the cssclass.

The content section in panel is not expanding to fit. However if any place any amount of static text it works perfectly. Also when I collapse the first panel the rest of the panel is disappearing when an user control is used. Am I missing something. The same problem when I tried to used ajax accordion

<asp:CollapsiblePanelExtender
ID="CollapsiblePanelExtender1" runat="server"
TargetControlID="PanelContentMain"
ExpandControlID="PanelTitleMain"
CollapseControlID="PanelTitleMain"
Collapsed="True"
TextLabelID=""
ExpandedText=""
CollapsedText=""
ImageControlID="Image1"
CollapsedImage="Images/accordion_active.png"
ExpandedImage="Images/accordion_active.png"
SuppressPostBack="True" >
</asp:CollapsiblePanelExtender>
<asp:CollapsiblePanelExtender
ID="CollapsiblePanelExtender2" runat="server"
TargetControlID="PanelContentAddress"
ExpandControlID="PanelTitleAddress"
CollapseControlID="PanelTitleAddress"
Collapsed="True"
TextLabelID=""
ExpandedText=""
CollapsedText=""
ImageControlID="Image1"
CollapsedImage="Images/accordion_active.png"
ExpandedImage="Images/accordion_active.png"
SuppressPostBack="True" >
</asp:CollapsiblePanelExtender>
THe header and content
----------------------------------
<asp:Panel ID="PanelTitleMain" runat="server" CssClass="collapsePanelHeader">
Application Information
</asp:Panel>
<asp:Panel ID="PanelContentMain" runat="server" CssClass="collapsePanel" >
<ucpers:ucpspers id="ucpspers1" runat="server" />
</asp:Panel>
<asp:Panel ID="PanelTitleAddress" runat="server" CssClass="collapsePanelHeader">
Contact Address Information
</asp:Panel>
<asp:Panel ID="PanelContentAddress" runat="server" CssClass="collapsePanel">
Contact Address
</asp:Panel>
The css
-------------
.collapsePanel
{
width:640px;
height:0px;
background-color:White;
overflow:hidden;
background-color: #E7FBFB;
border: 1px double #2E4d7B;
}
.collapsePanelHeader
{
width:640px;
height:20px;
color:Black;
background-color:#DDBF7D;
font-weight:bold;
font-size: 12px;
font-family:Arial,Verdana;
padding:5px;
cursor:pointer;
vertical-align:middle;
overflow:hidden;
border: 1px solid #b85dc3;
cursor: pointer;
}

View 2 Replies

AJAX :: Use Collapsible Panels With Nested Repeaters?

Oct 8, 2010

I have a page that has 3 nested repeaters. For the first two repeaters, the repeater's ItemDataBound event binds the next lower repeater. This works fine for the data that I have, but causes a large amount of data to load all at once on Page_Load. Is it possible to use collapsible panels with nested repeaters in such a way that the data only loads when the user clicks a particular linkbutton?

View 3 Replies

AJAX :: Stacked Collapsible Panels Lose Spacing After Being Collapsed

Aug 29, 2010

I can't figure out why these collapsible panels are losing their white space inbetween each header after the panel is collapsed.

[Code]....

View 4 Replies

AJAX :: Collapsible Panels - Map Doesn't Show Up Properly Within Container When Content Panel Extended

Jun 11, 2010

I have implemented a collapsible panel which works properly. It collapse and it extends the content panel when the link corresponding to the information panel is clicked. Within the content panel I have an HTML table control containing several rows and columns. Within one of these columns I have added a container (a <DIV> tag) holding a Google map. Here is the issue:

The map does not properly show up within the container when the content panel is extended. It appears to be shifted to the left, not centered as it should be. Therefore, any attempt to place a point mark on the map (centering the map over that point mark) is unsuccessful since the map doesn't show properly in the container so the point mark is not visible. Even if I drag the map with the mouse within the container, it always reposition at a bad location. If I comment out the extender, leaving the panel as is, the maps shows properly within its container. It is the collapsible panel extender which makes the layout to be incorrect.

View 2 Replies

Have Two Collapsible Panels On Page?

Nov 9, 2010

Have two collapsible panels on my page. When I open the top one (which has a panel and txtbox/label controls) it doesn't push down the other collapsible panel. It just covers it.

View 10 Replies

Web Forms :: Dynamically Creating Collapsible Panels For Datatables Using VB

Nov 10, 2010

I am creating varying number of datatables depending on user submitted query. I want to dynamically create collapsible panels for each datatable.

<asp:panel id=pnltitle1>dt1.rows(first row)</asp:panel>
<asp:panel id=pnlcontent1>dt1.rows(remaining rows)</asp:panel>
<asp:panel id=pnltitle2>dt2.rows(first row)</asp:panel>
<asp:panel id=pnlcontent2>dt2.rows(remaining rows)</asp:panel>
<asp:panel id=pnltitle3>dt3.rows(first row)</asp:panel>
<asp:panel id=pnlcontent3>dt3.rows(remaining rows)</asp:panel>

View 1 Replies

AJAX :: Collapsible Panel Extender / Close Automatically Whenever A Link Inside The Content Panel Has Been Clicked?

Apr 14, 2010

I am having trouble wiht my AJAX collapsible Panel Extender. I have the CPE opening a panel that contains the Table of Contents of a document being displayed on the page. A user clicks on the link for a certain part of the document, the event triggers a C# function that gets the file that particular section is contained in an displays the section. Right now you have to, of course, click on the TitlePanel to open and to close the CPE. What I want to do is have it close automatically whenever a link inside the content panel has been clicked. I have tried placing this.cpeTOC.Collapsed=true; in the functiion that gets the files but it does not work. I have also tried the autocollapse property of the CPE and it just collapses whenever someone moves thier mouse from the titlepanel.

View 1 Replies

MVC :: Collapsible Panels Or Treeviews - Need To Show Nested Data Nicely

May 20, 2010

What would be the way to show a treeview in MVC - I realise from looking around that there is no real way of doing this without using jQuery. I have a model which contains multiple levels of data and need to display this in a hierachical way - can anyone point me in the right direction - I have googled and searched a fair bit but not came across anything useful as yet. I could really do with using the Ajax collapsible panel control - is there any way to use this in an MVC view?

View 3 Replies

Forms Data Controls :: Sorting In Gridview Where Page Has Collapsible Panels

Oct 27, 2010

I have a page that has the layout seen below (Keep in mind this screenshot is from another one of posts) so it has explanations about that issue and not this new post. But I cant create a new image, so it will work to show what I am having issues with. When you arrive to the page you get the first in the image below. The DVR search is already expanded and you can select a name and search or chose a different type of type. I have the gridview below tied to my objectdatasource which works great and was working great until we added the collapsible panels. If I perform a search on DVR name, results are returned in the image view and everythign works. I can then change to List view and that works great.. gridview binds and all functionality works. But the issue now is if I click on the "Date Search" link on the Search Options menu, my panels expand and collapse as expected now that I clicked Date Search, I enter my dates adn click search and results are returned..

Then the issue is that sorting doesn't work. But it does work for the initial search IF performed by the DVR Name. Searching by DVR name sorting and paging works.. but i change to another panel and hit search, the gridview is updated with new results but the sorting doesnt work. I receive this error when I try the date search.. same for All other searches except the first one. Is having the textboxes within a collapsible panel causing my issue? Error message when I click a column to sort on. But like I said, if I just do a search using the first open panel which is the DVR name, sorting works fine. ObjectDataSource 'ObjectDataSource1' could not find a non-generic method 'SelectInfo' that has parameters: sdate, edate. Here is my gridview control code..
[Code]....

View 6 Replies

AJAX :: Two Update Panels Interfacing With External Button - How To Control Button Visibility

Jun 15, 2010

I have a page with 2 update panels

UpdatePanel1 contains a gridview1 and a standard panel, pnlForms. gridview1 has a linkbutton which is processed in the gridview1_rowcommand

UpdatePanel2 has gridview2.

There is also a Submit button that isn't in either UpdatePanel but may be a candidate to go into its own UpdatePanel. The Submit button is a trigger for both update panels

The behavior I would like is:

1-Initially, all visible except pnlForms and Submit button 2- When linkbutton in UpdatePanel1 gridview1 is clicked, pnlForms and Submit button become visible. 3. When Submit button is clicked, both gridviews should be refreshed, and PnlForms and the Submit button should both become not visible. I believe I may have to put the Submit button in its own UpdatePanel3 but am not sure how to proceed.

In my present code, everything works as desired except Submit button (not presently in any Update panel) is always visible. Assuming Submit button is initialized to not visible, how do I get it to appear when I click the link button in gridview1 and to disappear when it is clicked?

View 1 Replies

AJAX :: Multiple Collapsible Panel Extender Not Working Inside Gridview

Dec 10, 2010

I have a problem where the collapsible panel extender stops behaving properly after the first row in the gridview. On row 2, the collapsible panel don't work anymore (the label is not clickable). It gets even worse on row 3 where the product category accordion pane doesn't open anymore. This is the structure:

Accordion
AccordionPane: General Info
Formview
AccordionPane: Product Categories
Gridview
3 boundfield
1 templatefield
CollapsiblePanel
1 templatefield
3 collapsiblePanel

First Row:
2nd row
[Code]....
Dim sql As String

View 1 Replies

AJAX :: Multiple Update Panels On Same Page?

Jan 5, 2010

i have 3 update panels on the same page with labels that are showing different countdown and i want then to run separate from each other. I've tried to use timer control that triggers each of them separatley with limitations in ontick event., the coutdowns are strating but after a few seconds are stoping and i don't know why.i'm not using scripts. I want to run like those on mafia wars on Facebook when something is done to start one contdown and something else other timer.

View 3 Replies

AJAX :: Shows Data In Multiple Panels

Apr 13, 2010

I have web page with multiple update panels on it, each update panel has a detail view which is bound to different data sources, since the data loading takes time so i want that when data from any source is available the update panel shows it, while the other update panel shows a progress panel till data loading is done.

I have set all the update panel to 'Contional Mode' updating and a trigger is set to them against a buttons click event. on button click i load data from Db. hoever, when i click the button all update panel start the progree bar and they load data syncronously, but i want the above secario.

View 3 Replies

AJAX :: Collapsible Animated Gridview - Expand Button

Mar 23, 2011

I have 2 grid view Parent & child on parent gridview I have expand button inside item template. I want by click on parent expand button child gridview get open with animation. How to do this? I am using asp.net c sharp.

View 1 Replies

AJAX :: Load Multiple Update Panels Simultaneously

Aug 22, 2012

I have two different repeater control which are in two different Update panel.I want to bind one Repeater value with another.But When i am using asyncPostBackTrigger or postbacktrigger it is reloading whole page.

I want to load only load update panel

View 1 Replies

AJAX :: Capture A Button Click Inside A Collapsible Panel?

Sep 25, 2010

I have a webform that has a collapsible panel I want to put a button inside the collapsible panel. How do I capture the button click in the code behind?

Here is my code: I want to capture the button click of Button1

[code]....

View 5 Replies

AJAX :: Assign Multiple Panels To Modal Popup Extender

May 6, 2014

Requirement is:When I click on "Show Modal" button, it should open a ajax ModalPopup with 2 buttons: "Add Node" and "Add Goal"when I click on "Add Node" button, panel 1 should openWhen I click on "Add Goal" button, panel 2 should open.

I tried below code:

HTML:

<asp:Button ID="BAdd" runat="server" Text="Show Modal" ValidationGroup="usrvalid"/>
<!-- ModalPopupExtender -->
<cc1:ModalPopupExtender ID="Modal" runat="server" PopupControlID="ShowPanel" TargetControlID="BAdd" CancelControlID="btnClose" BackgroundCssClass="modalBackground1">
</cc1:ModalPopupExtender>

[Code] ....

But its not showing the panel1 and panel2 on button click(that are inside modal pop up)....

View 1 Replies

Web Forms :: Trigger Multiple Buttons When Upload Button Is Clicked?

Jan 24, 2016

Trigger multiple buttons when upload button is clicked in ASP.Net.

View 1 Replies

AJAX :: How To Show Modal Popup Onclick Of Button Inside Collapsible Panel Extender

Jun 21, 2013

I want to show model popup, I have One asp page in thatĀ Collapsible Panel and tow user control and one button, Suppose I click on button then show the model popup and hide the panel and user controls..

View 1 Replies

AJAX :: Multiple Panels And Validators - Postback Is Halted By The Validators In The First Panel

Jul 21, 2010

I have a page where I am using 2 update panels. The first update panel contains a form that has some validation tied to it. The second on has a simple form, but no validation. When I go to use the form in the second panel, the postback is halted by the validators in the first panel. Everything works as it should when I remove the validators.

View 2 Replies

AJAX :: Getting The Value From Database Based On Which Button Is Clicked In Repeater

Apr 25, 2010

i am using a repeater control inside the updatepanel,there are few buttons in the repeater based on the database entries,what i want is to get the values from the database based on which button is clicked ! here is my code

[Code]....

so when i click on the any of the item(button) in the fastfood category the item price from the database for that item can be retrieved !

View 3 Replies

AJAX :: Open A New Window When A Button Of Gridview Was Clicked?

Feb 24, 2011

There is a gridview inside of an UpdatePanel.

Some information are shown in Gridview and whenever a button of a particular row is clicked, I open a new window to show print preview.

In order to open a new window I tried to write "Window.Open" using Javascript syntax; however, it didn't executed.

I think AJAX dosen't allow other routins of javascript to be executed.

View 2 Replies

AJAX :: Show Processing When Button Clicked In The Updatepanel?

Aug 17, 2010

I have below code to show processing when button clicked in the updatepanel. But it does not disable the page and processing icon is not showing in the centre. How to disable the page and put the processing icon in the centre when button is clicked according to below code?

<%@ Page Language="C#" MasterPageFile="~/Template.master" AutoEventWireup="true" CodeFile="TESTForm.aspx.cs" Inherits="Reports_TESTForm" %>
<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="ajaxToolkit" %>
<%@ Register Assembly="Flan.Controls" Namespace="Flan.Controls" TagPrefix="cc1" %>
<asp:Content ID="ContentMain" ContentPlaceHolderID="MainContent" Runat="Server">
<div>TEST Form</div><p></p>
<asp:UpdatePanel ID="UpdatePanel1" runat="server"><ContentTemplate>

// .........Coding...............

</ContentTemplate>
<Triggers>
<asp:PostBackTrigger ControlID="btnExport" />
</Triggers>
</asp:UpdatePanel>
<asp:UpdateProgress ID="udProgress" AssociatedUpdatePanelID="UpdatePanel1" runat="server" DisplayAfter="100" Visible="true" DynamicLayout="true">
<ProgressTemplate>
<div>
<img border="0" src="../Images/Global/ProgressIndicator.gif" />
</div>
</ProgressTemplate>
</asp:UpdateProgress>
<cc1:UpdateProgressOverlayExtender ID="UpdateProgressOverlayExtender3" runat="server"
CssClass="updateProgress" TargetControlID="udProgress" OverlayType="Browser" />
</asp:Content>

View 3 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved