I'm using asp.net/c# and have a number of Collapsible Panel Extenders that have been dynamically created when the page loads. The controls are within an update panel that updates every 5 seconds. The problem I have is whenever the update panel updates the state of the controls is reset. For example the Collapsible Panel Extender start li...
I'm using CollapsiblePanelExtender from AjaxControlToolkit, it works fine when i click on it, but it won't expand all the way on the initial page load (expands about 90%).
I have to collapse it and expand it back manually for it to open up all the way.
I don't have the ExpandedSize property set, because the panel content is dynamic.
...
I have an asp.net ajax CollapsiblePanelExtender control on my page. The way this control is designed, you can specify one control to open the panel and another control to close it:
<ajaxToolkit:CollapsiblePanelExtender ID="cpe" runat="Server"
TargetControlID="panelStuff"
ExpandControlID="butToggle" CollapseControlID="butToggle" Coll...
Hi all,
I am using the ASP.NET AJAX Control Kit and I am having a problem using a collapsible panel in my code. I have the following code:
<table><tr>
<td class="bg">
<a class="bg" href="javascript:void(0);">
<asp:CheckBox runat="server" ID="chkSMSGrossRevenue" Text="Gross Revenue (Daily, Monthly, Yearly)" /></a>
<asp:Panel...
I have a a CollapsiblePanelExtender with the usual extend and collapse buttons....I would like to have a click event fire off when the extender is extended and a different click event fire off when the extender is collapsed. But the most important event is when it is extended. I could live without a click even on collapse.
Most of the ...
Anyone try this simple bit of code in an ie8 browswer and try refreshing the page,
in ie8 you will get an error around getelementbyid on refresh.
When i run it it complains of not being able to find control with id of 'ctl00_main_dd'
<cc1:CollapsiblePanelExtender ID="CollapsiblePanelExtender2" runat="server"
ImageControlID=...
The CollapsiblePanelExtender seems primarily designed to collapse/expand things in response to user mouse events. Is there also a good way to get the extender to collapse/expand things in response to client-side javascript?
In my particular case, I have a number of CollapsiblePanelExtenders (and their corresponding Panels) on a page, an...
I had created a Collapsible Panel Menu user control which is in Master Page. What I am doing is all the menu and submenus(Hyperlinks to other pages) of my Menu User control are comming from a table and I am data binding it from code behind. The problem is when I clicks any submenus it is taking me to other page but the collapsible panel ...
I would like to be able to return a programmatically generated collapsible panel extender through javascript along with it's panel and so on. I've got the panel and associated tables going through just fine however when I try and attach the cpe it breaks. and returns an error:
The cpe panel and such are being generaged by a WebService ...
I'm having an intermittent problem with the CollapsiblePanelExtender.
The way we are using them is to wrap it around a gridview, so that only the header-row is displayed(which contains a checkbox for select all) while collapsed. The page always load as collapsed.
about 95% of the time, this will work perfectly fine, however, once in a...
I am currently working on an advanced web application that contains a number of Dynamically Rendered pages. The pages are standard pages which contain a place holder into which the main content is rendered from a combination of Xml and Xslt.
I have recently been attempting to add a ASP.Net Ajax Toolkit collapsible entender to allow the...
I have a collapsible panel extender. I have no issues with the extender. however, I have a link that opens the panel and I want another link saying collapse to close it. I want to hide one show one javascript side. The issue is that it only works for the first row but not the others because I am not getting the unique ID or something. I ...
I've been banging my head against the wall with the following issue:
My mock-up site works as intenden in Firefox:
[http://www.plasus.com/test/work/work/Default.aspx][1]
In all other browsers, the collapsible panels and all other AJAX ControlKit stuff is immediately visible to the user, which is not at all intended.
What could possi...
Hi,
I am creating a Windows application (WPF) and C#. In my view, I have to add few layouts like browsing a folder, displaying the files in the folder in a list view...etc
My requirement is :
The panels mentioned above should be collapsible panels, I guess, we dont have option of collapsible panel in wpf.
I have to create a custom co...
I am running the ASP .NET AJAX Toolkit 3.5.
I have setup a panel with a collapsablePanelExtender and it works in Firefox 3.5 but not in IE7! In IE7 all the "collapsed" panels never shrink - activating the button does nothing.
My code:
<asp:ImageButton ID="btnA" runat="server" ImageUrl="~/Image/expand.gif" />
<asp:Panel ID="pnlA" run...
Hi,
I was discovering CollapsiblePanelExtender tutorial but then I found there is a better documentation in StackOverflow. Is there any documentation or even a book about AjaxControlToolkit that is up-to-date?
...
I currently have a page that contains a RadTreeView. On each node of the RadTreeView is an ASP.NET Ajax CollapsiblePanelExtender. In the code-behind I have certain panels expanded and certain panels collapsed based on some business logic. Is there a way to detect when ALL ASP.NET-generated Javascript (collapsing/expanding of Collapsib...
Hi,
I am using a Ajax collapsible panel which is used for a search control and it works fine.
I use this user control in another user control which uses the telerik rad tabs the tabs contain a textbox where i do something on the key press event client side . It works fine that is the key press event is fired but right after the event a ...
cpe.Collapsed seems to be always set to the initial state and not reflect the current state. Is there a direct way to determine on the server if the panel is collapsed?
...
Hi,
I have a question about collapse panel..
I have a placeholder and I add more than one headerpanel, contentpanel, collapsiblepanel dynamically.. Here is my code :
CollapsiblePanelExtender cpe = new CollapsiblePanelExtender();
Panel pnlheader,pnlcontent;
Label lblcontent,lblheader; Button btn;
for (int i = 0; i < 10;...