Questions tagged [collapsiblepanelextender]

The CollapsiblePanelExtender is part of the AJAX Control Toolkit for ASP.net

The CollapsiblePanelExtender is part of the AJAX Control Toolkit for ASP.net

The official Sample is here
And the official tutorial is here

The CollapsiblePanel is a very flexible extender that allows you to easily add collapsible sections to your web page. This extender targets any ASP.NET Panel control. The page developer specifies which control(s) on the page should be the open/close controller for the panel, or the panel can be set to automatically expand and/or collapse when the mouse cursor moves in or out of it, respectively.

64 questions
0
votes
1 answer

Can I copy the CollapsiblePanelExtender in jQuery as one method?

I am beginning the process of moving away from the AjaxControlToolkit and toward jQuery. What I want to do is have one function that duplicates the functionality of the CollapsiblePanelExtender. For a particular set of hyperlink and div, the code…
Matthew Jones
  • 25,644
  • 17
  • 102
  • 155
0
votes
1 answer

Performance issue with ASP.NET page with many (hundreds of) CollapsiblePanelExtenders

I'm maintaining an ASP.NET site where users can log on to register some set of data (for statistical purposes). One user registers data for a set of units, and for each of these units a set of forms are to be filled out (with a handful of fields in…
Julian
  • 20,008
  • 17
  • 77
  • 108
0
votes
1 answer

ASP.NET Show/Hide Sections in a Datagrid row

I have a datagrid where each row has information on Employees in a company. I would like to allow each row the ability to show/hide extra information. My first idea was use the CollapsiblePanelExtender from the AJAX toolkit and have each row like…
0
votes
1 answer

About collapse panel which panel selected

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…
cowboycb
  • 539
  • 5
  • 11
0
votes
1 answer

CollapsiblePanelExtender should not collapse on AutoPostBack

I've got an asp.net page with some CollapsiblePanelExtender which is collapsed by default and contains CheckBoxes. My problem is that when I expand one and check a CheckBox an AutoPostBack event is firing and my CollapsiblePanelExtender is collapsed…
0
votes
1 answer

How to determine the collapsed state of the AjaxControlToolkit CollapsiblePanelExtender in code-behind?

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?
cdonner
  • 37,019
  • 22
  • 105
  • 153
0
votes
1 answer

Gridview does not shows up in Repeater

I am having problem with repeater and extensiblecollapsible panel extender in C#. What I am trying to do is inside the repeater1, I get all the category name and display as a label at extensible panel extender. As for the repeater2, I get all the…
user2531590
0
votes
1 answer

Repeater and Collapsible Panel Extender

I am trying to bind a grid view into a repeater for collapsible panel extender body. Here is the code:
user2531590
0
votes
1 answer

AJAX Collapsible Panel Extender Code Behind

I am having some problem with AJAX Collapsible Panel Extender. Currently what I am trying to do is when certain panel is extended, then it will perform some sql statement. I have no idea on how to write the code other than just squeeze all of them…
user2531590
0
votes
1 answer

Collapsible Panel Smooth Animation - not working

I have 2 Ajax collapsiblePanels one below the other. The first one has a repeater inside it and the second has a gridview. The JS function for both is exactly the same. The problem is, the animation is smooth for the second one, but not the first. I…
Ruby
  • 949
  • 7
  • 31
  • 68
0
votes
1 answer

Detect when all ASP.NET-generated Javascript has run

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…
0
votes
2 answers

ASP .NET - CollapsiblePanelExtender does not work in IE7

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…
John M
  • 14,338
  • 29
  • 91
  • 143
0
votes
1 answer

ExtJS viewport panel

I have EXTJS panel inside a viewport east region, var viewport = new Ext.Viewport({ layout: 'border', id:'mainviewport', monitorResize:false, items: [{ region: 'east', xtype: 'panel', id:'east-panel', …
Shakthi
  • 37
  • 1
  • 5
  • 17
0
votes
2 answers

Collapse panel javascript issues

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…
Eric
  • 7,930
  • 17
  • 96
  • 128
0
votes
2 answers

How do I create an equivalent to the collapsible panel extender in HTM file?

I created an asp.net file with a working collapsible panel. I assumed that if I take the client side's source and copy it into an HTM file it would still work - but it doesn't. What I did was "view source" and copied all of it to a blank HTM…