expand

ABAP Column Tree Model doesn't expand node after EXPAND_NO_CHILDREN event

I am displaying a list of items using a SAP ABAP column tree model, basically a tree of folder and files, with columns. I want to load the sub-nodes of folders dynamically, so I'm using the EXPAND_NO_CHILDREN event which is firing correctly. Unfortunately, after I add the new nodes and items to the tree, the folder is automatically colla...

Expand Rectangle Report Item as the Report expands in SSRS

Hi I have a SSRS report. I am using a rectangular to display textbox values in my report header. My data region is having a table which expands according to the input parameter selection. How do i expand my rectangle in length in accordance with the table. Please get me an idea. Thanks in advance, Anna ...

WPF - Maximizing app window does not expand controls vertically - horizontally it does

when I press the Maximize button on my WPF app, all the controls therein expand perfectly horizontally, but they do not expand to fill the window vertically. I figure it Maximize handles it horizontally, it should handle it vertically as well. Should I be setting a property somewhere on each control? I can catch the Resize event, but ...

Viewing compiler expanded code - C++

I learned that compiler will expand macros while compiling. Templates are also expanded at the compile time. Is there any way to see this expanded code? I am compiling using Visual Studio 2008. any thoughts? ...

How to grow a div by its content?

Hello, please, can someone explain to me, why the red div isn't expanding to the right? It stops where the screen ends. What do I have to do, to make it expand? One thing that works is to "display: table-cell" the red div but I was wondering if there's another way and why this happens...? <?xml version="1.0" encoding="UTF-8"?> <!DOCTYP...

NSOutlineView - Auto-expand all nodes

I've got an NSOutlineView bound to an NSTreeController (if that makes a difference), and I'd like to expand every node in my -awakeFromNib(). I'd also like to programatically select the first child of the first node at the same time. These sorts of things are simple with table views, but outlines are not cooperating with me at all. Tha...

How do you make a webpage change its width automatically?

In HTML, is there a way to make a webpage expand to the user's monitor? Like say I have a 15inch, but someone else has a 24 inch. The webpage would be small on their screen, but would fit on min. How would I make the page expand to 100%, or maybe 95%? ...

Why IExpando.AddMethod was not called?

Hi, I'm hosting my WinForms control in Internet Explorer. Additionally I've implemented IExpando interface to be able to emulate unexisted fields and methods in my C# code when javascript code try to access them. For example var myobj = new ActiveXObject('server.object'); myobj.Foo = "FooText"; myobj.Bar("BarText"); Note that my C# c...

jQuery plus/minus or expand/collapse on a list

Anyone want to have a crack at emulating what the BBC have done on their homepage boxed contents with the PLUS / MINUS icons showing/hiding elements in a list. http://www.bbc.co.uk/ I've tried to do this but so far the effect isn't exactly right. Or, is there a plugin or something which would allow you to do a similar thing? ...

WPF TreeView: Where is the ExpandAll() method

How can I expand all TreeView nodes in WPF? In WinForms there was a ExpandAll() method which does this. ...

Is there a cross browser way to expand text on click via css?

First, here is what I would like to do: Row 1 Row 2 Row 3 I have code setup so that when I hover over row1, 2 or 3, the row gets highlighted. This is done via css. I would like to be able to (for instance) click row1 and then it would look like this: Row 1 Some text here Row 2 Row 3 That text would stay there until I clicked on...

positioning expanding collapsing box from a table cell with jquery

Hello, My question is if anyone knows how too achieve the effect of creating a slidedown from a tablecell, without having the whole table expand with. It has too slide independantly from the location of that particular row on top off the table, so too speak otherwise it looks ugly as you can see from my page (click on the first row) ...

How to expand and collapse parts of NSSplitView programatically?

Hi, I want to replace RBSplitView with NSSplitView in my existing project. The application is now leopard only and I would like to replace RBSplitView with the new NSSplitView shipped with Leopard. However, I'm missing RBSplitView's handy methods expand and collapse in NSSplitView. How can I expand and collapse parts of NSSplitView pr...

How to Remove Visual C++ "Expand Menu" Arrow?

When creating menus with submenus in Visual C++, I find that submenus begin as arrows that I must click to expand to see their contents. Is there a way (programmatically) to have the submenus pop-out already expanded (with no arrow to click)? Here is an image of what I am talking about, before and after clicking aforementioned arrow: ...

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...

How to expand an array dynamically in C++? {like in vector }

Lets say, i have int *p; p = new int[5]; for(int i=0;i<5;i++) *(p+i)=i; Now I want to add a 6th element to the array. How do I do it? ...

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...

How to expand JavaScript Array with another Array?

There doesn't seem to be a way to expand a JavaScript Array with another Array, i.e. to emulate Python's extend method. What I want to achieve is the following: >>> a = [1, 2] [1, 2] >>> b = [3, 4, 5] [3, 4, 5] >>> SOMETHING HERE >>> a [1, 2, 3, 4, 5] I know there's a a.concat(b) method, but it creates a new array instead of simply e...

Programmatically show expand arrow on Silverlight TreeView

I have a Silverlight TreeView control that I'm dynamically populating when a specific node is clicked. For example, I load the first generation (level) of nodes, then when the user clicks on one of the nodes, I use the Selected event to populate that node's children, etc, etc. I'm sending back from my database a bool value with each no...

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...