collapse

Why would a TreeView collapse unexpectedly in WinForms?

What would cause a TreeView to collapse, other than a call to the .Collapse() method on a TreeNode or the .CollapseAll() method of the TreeView? In an application that I am developing, the TreeView will simply not behave properly. The TreeView maintains only two levels. When selecting a child of a parent node, all other nodes immediatel...

howto collapse all XML comments in Visiual Studio 2008

Hi, i was wondering if there is an plugin, addon or any other easy way to get rid of the bloated xml comments for c#? Company wants the documentation, but in my daily work the comments are simply polluting the code. It would be nice to have an easy way to simply collapse all xml documentation before the methods to one line or even bette...

To collapse div and p by CSS

How can you collapse div and p -elements if they are empty by CSS such that the tags are not shown for the user in the source code? These elements are in my source code although they are empty. This causes bugs with the rest of the site. I run this unsuccessfully div.unsuccessful, div.unsuccessful p { visibility: collapse; ...

An accordion in jQuery 1.3.2 not working (was working in 1.3!)

Ok, so somewhere, something is wrong. When I was using version 1.3 the accordion was working fine. When I upgraded jQuery to version 1.3.2 it now no longer works as it's supposed to. I need the latest version because it is solving some errors that IE6 was throwing up... So here's the code, and what needs to change in order for it to wo...

Sharepoint navigation menu collapse

Does anyone know when in sharepoint you´ve created a navigation structure in site settings navigation / that i can only add a page under a heading and have to hide the page which is the heading? How I can make the menu collapse when clicking on the top menu rather then immediate display? I want to display the second level when clicking...

using + and - or triangle pointing to the right or down?

I've seen web sites that use the MS convention of using the "+" (plus) and "-" (minus) sign to expand and collapse rows of folders. On other web sites I've seen the Macintosh style of using the little triangle (arrow) pointing to the right to show a collapsed row (nested folder) and pointing down to represent a folder that has been expan...

c# collapse array list

if i have class foo { int a int b } and a List<foo> myList is there some short hand notation for to make a List<int> from eg myList[*].a, ie pick out a from each element and making a new list clearly this can be done by iterating through myList, but seems to happen often and i was wondering if there's a shortcut notation sa...

CSS: Margin-top when parent's got no border

Hi, As you can see in this picture, I've got an orange div inside a green div with no top border. The orange div has a 30px top margin, but it's also pushing the green div down. Of course, adding a top border will fix the issue, but I need the green div to be top borderless. What could I do? html: <div class="header">Top</div> <div cl...

Accordion - Expand/Collapse - but first panel is opened and screws it up

Hey guys, I've got an accordion which has the first panel opened on default by throwing in: $("h4#open").trigger('click'); (which triggers the first panel to act as if the h4 link were clicked, and thus opened...) But this seems to screw up the only way I can think of expanding / collapsing all the panels. I have this code to expand...

For what reason margin collapse rules were introduced in CSS?

Just can't figure out the situation when this clever set of rules can be helpful. They break the simplicity of the box model and provide infinite source of troubles when you combine different pieces of layout together. So what is the reason? Rules for the reference. Update: Rules are quite logical for sibling elements, but why margins ...

Expanding and collapsing multiple neighboring divs within the same parent element

I'm struggling with this bit of code, and I'm not sure if it's even possible. I have a list of divs within a single parent element, and I need to collapse and expand certain sets. Here's an example: <div id="parent"> <div class="alway_show">ALWAYS SHOW ME</div> <div class="collapse_me">COLLAPSIBLE</div> <div class="collapse_me">CO...

jquery - Collapsing / Expanding divs?

Trying to create collapsible / expandable divs using jQuery, but it's not working for me at all... Each h3 should expand/collapse the div beneath it, and I'm not sure why this isn't working... Granted, is a heavily nested div, but I thought that the script below would find the uforms class regardless of how much other markup is on the...

Prevent Duplicate Borders on Nested Table (border-collapse not working)

I have been searching the net about border-collapse. And it seems it does not really collapse the border on nested table. I wrote a sample HTML and it seems to be ignoring border collapse. I found a related question here but it seems it is not solved. link text <html> <head> </head> <body> <p>dsafhidsljfalkdsjfklsdajfkjsdakl jdsfjasd...

ASP.Net TreeView Expand/Collapse All does not work when node icons are present

I've used the following js code to expand/collapse all nodes of an ASP.Net TreeView control: // handle tree - this doesn't seem to work when the tree contains node images function TreeviewExpandCollapseAll(treeViewId, expandAll) { var displayState = (expandAll == true ? "none" : "block"); var treeView = document.getElementById(t...

Floats and Margin Collapse

Hi, so I'm having a hard time understanding the circumstances under which a float can have margins collapse through it and how that affects the position of the float. I've included a page that seems to show two different behaviors in the same page. The red float seems to be positioned before the margins that collapsed through it, where...

Creating a collapsable area in ASP.NET

hi there! currently i've built a collapseControl which behaves similar to a label (associatedControlID) to control the collapse-state of a control. following control i'd like to build: i thought of something like: put my already build collapsableControl and some other control (eg. panel) together to get a collapsableArea. first t...

How do I uncollapse a margin?

Collapsing margins in CSS: http://www.w3.org/TR/CSS21/box.html#collapsing-margins I understand the purpose of the feature, but I'm trying to do layout, and I can't figure out how to turn it off. The way usually explained in CSS tutorials is to either: Add a border Add a padding All of these have side effects that become obvious whe...

Mozilla CSS bug : table with bottom-border + border-collapse : causes random borders to appear and disappear

When applying a bottom border to a table, with "border-collapse" set to "collapse", weird random bottom borders appear below some table rows, of varying widths -- they appear and disappear when scrolling, sort of like the IE6 "peekaboo bug"; resizing the window, or switching to another application and back again, makes them go away, scro...

WPF TreeView not collapsing its formerly used space on collapse of root root

Hello, I have some objects with various collection properties that I'm displaying in a ListBox using a DataTemplate for the ItemTemplate. Within that DataTemplate is a TreeView which displays various properties as TreeViewItem children of a root TreeViewItem which represents the items being displayed in the ListBoxItem. My problem is ...

How to add 'collapse' to a Django StackedInline

In the same way you can add 'classes': ['collapse'] to one of your ModelAdmin fieldsets, I'd like to be able to have an Inline Model Admin be collapsible. This ticket, Collapse in admin interface for inline related objects, discusses exactly what I want to accomplish. But in the mean time, what's the best work around while we wait for ...