0
votes
1answer
19 views
Filling the parent with Qt widgets
I'd like to create an application's main window in qt4 designer.
When I add a layout element to the centralwidget, that element stays in the middle of the window and does not move …
0
votes
2answers
51 views
rich:datatable and expandable column with internet explorer
I created a simple solution for expandable columns/rows with rich:datatable and rich:column, which is similar to: http://stackoverflow.com/questions/358840
The facelets code is (s …
0
votes
0answers
146 views
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 …
0
votes
5answers
110 views
Need CSS sidebar height to expand with content.
I have a two column layout, with a gray sidebar on the right. I need the sidebar's height to expand when the height of the left column is increased (due to content being dynamicall …
1
vote
3answers
113 views
How to expand JTree nodes (in advance), but keep them invisible
Hi,
I seems to me that when i call
JTree.expandPath( path )
That by default all its parents are expanded as well.
But what i actually want to do is, set up specific invisib …
1
vote
3answers
225 views
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 …
0
votes
1answer
209 views
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 li …
0
votes
3answers
106 views
How to expand window contents when scrollbar is not visible in wpf?
I have a scrollbar in wpf around a ItemsControl, which is only visible when the list is longer than the window size. However, when it is hidden, there is a blank white space where …
0
votes
2answers
239 views
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 use …
2
votes
4answers
128 views
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 expand method.
What I want to achieve is the following:
>>> a = …
0
votes
2answers
260 views
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 t …
1
vote
1answer
37 views
[autoconf] how get fully expanded variables out of configure?
hi all
i created a configure.ac file like this:
AC_INIT()
set
the purpose of this is to print every available environment variable the configure
script creates using 'set …
1
vote
5answers
254 views
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?
0
votes
1answer
51 views
Automatically expanding all the children of an NSOutlineView?
I'm writing a wizard with template categories and I'm contemplating using an nsoutlineview to present the user with a hierarchical list of possible templates.
However I can't seem …
1
vote
1answer
126 views
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 t …
