Tagged Questions
The expand tag has no wiki summary.
19
votes
4answers
6k views
How to append an array to an existing JavaScript Array?
There doesn't seem to be a way to append an array to an existing JavaScript Array, i.e. to emulate Python's extend method.
What I want to achieve is the following:
>>> a = [1, 2]
[1, 2]
...
10
votes
1answer
3k views
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 ...
9
votes
9answers
10k views
How to grow a div by its content?
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: ...
7
votes
4answers
188 views
Coefficient function is slow
Please consider:
Clear[x]
expr = Sum[x^i, {i, 15}]^30;
CoefficientList[expr, x]; // Timing
Coefficient[Expand@expr, x, 234]; // Timing
Coefficient[expr, x, 234]; // Timing
{0.047, Null}
{0.047, ...
6
votes
3answers
6k views
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.
4
votes
3answers
80 views
How Do I Expand A File Resource Embedded in C Program
On GCC Linux, is there a way I can add a file resource to be embedded statically into the C program, and then how would I expand that out to /tmp from main()?
4
votes
2answers
776 views
Expand container div with content width
I have the following structure in my application:
<div id="container">
<div id="child_container">
<div class="child"></div>
<div class="child"></div>
...
4
votes
2answers
4k views
WPF DataBound treeview expand / collapse
I'm just trying to find a way to control the expand / collapse of the TreeView nodes through the object they're bound to. The object has an IsExpanded property, and I want to use that to show the ...
3
votes
1answer
96 views
FIXED: emacs:org-babel: noweb reference expand with an surplus line
When noweb reference in org-mode 's source code block is expanded, ever the content of the reference consists of only one line, it will expand the reference with an surplus line. This is an example:
...
3
votes
2answers
183 views
How to have Collapsable/Expandable JPanel in Java Swing
I want a JPanel that can be Collapsed or Expanded when user clicks on a text/icon on its border. I need this type of panel due to space crunch in my application.
I read about CollapsiblePanel class ...
3
votes
2answers
374 views
Swing JList with multiline text and dynamic height
I already read/tried these posts but that didn't help:
Display multiple lines within a Jlist cell
http://stackoverflow.com/questions/2726510/how-to-get-multiline-for-a-jlist-text
Problem displaying ...
3
votes
1answer
254 views
How do I get jQuery .expander to invoke on load and not just on click?
I am having problems with jQuery .expander function and invoking it when the page loads and I know it has to do with the data being dynamically populated with jQuery.
NOTE: It looks like altering ...
3
votes
5answers
458 views
How to implement expand/collapse nature to JTables in java swing application
In my application i am displaying a list of tables with huge data. All of the tables may not fit in the window, we need to scroll to see the bottom tables. Here i need expand/collapse nature to the ...
3
votes
1answer
261 views
How do I view object properties in PropertyGrid?
At the moment I have an object of type A which is being viewed by the PropertyGrid. However, one of its properties is of type B. The property which is of type B is not expandable. How can I change ...
3
votes
2answers
1k views
jQuery expand/collapse hierarchical table row
I am looking for an efficient way to expand/collapse hierarchical table rows using jQuery. The problem is, that the expand and collapse functionality differs.
Initially, only rows with class level_0 ...
3
votes
2answers
2k views
WPF TreeView databinding to hide/show expand/collapse icon
I implemented a WPF load-on-demand treeview like described in this (very good) article.
In the mentioned solution a dummy element is used to preserve the expand + icon / treeview item behavior. The ...
3
votes
3answers
918 views
Speed up expand/collapse all nodes of a JTree
I have a JTree with about 100000 nodes or more. Now I want to expand the whole tree. To do so I use the solution I found here.
My problem is that expanding such a large tree takes like 60 seconds or ...
3
votes
3answers
2k views
How to expand all nodes of a WPF treeview in code behind?
I might be suffering of Monday's dumbness, but I can't find a nice way of expanding all treeview nodes after I've added them in code behind (something like treeView.ExpandAll()).
Any quick help?
3
votes
1answer
341 views
how get fully expanded variables out of configure?
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'
so i do:
user@host:~$ ...
3
votes
5answers
985 views
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 ...
2
votes
3answers
81 views
Expand DIV vertically from the bottom to the top
I would like to expand a DIV vertically from the bottom to the top without using percents or functions (only css). I have two div but only the second one has a defined height, so I have to fix the ...
2
votes
1answer
400 views
jQuery expand/collapse div not working in IE7/IE9
The URL I'm working on is www.christnc.com. If you go to the site, you will see a button at the top of the page that says "Locations." When clicked, it is supposed to expand a div (using jQuery) ...
2
votes
1answer
104 views
Are there any tutorial/code samples on controlling an animation with a gesture on a tablet?
What I mean by controlling an animation with a gesture, is like that I have an animation where my view object folds into itself. I want it to fold into itself when I slide my finger right-to-left ...
2
votes
3answers
401 views
How do I change the expand/collapse icon on a Telerik winfrom Treeview?
I'm trying to customise the expand/collapse icon on a Telereik Winform TreeView control.
If I populate a TreeView control with the PropertyBuilder, I can see ...
2
votes
2answers
161 views
Emacs outline-mode auto expand upon grep
I'm using outline-mode (org-mode mostly) in emacs, and use grep-mode to search.
What annoys me is when I follow the links in the grep buffer, the
folded texts do not unfold. Is there a way to ...
2
votes
1answer
347 views
WPF GridViewColumn Width=“auto” only works for items in the current scroll scope
I have a ListView that contains many items and am trying to set the column widths to auto so that they auto-expand to the width of the longest string in the column. At first, it appeared to work, but ...
2
votes
1answer
1k views
TextView expand animation like in Android Market
Can anyone point to solution how to make expand animation of Description TextView in Android Market animation? There are TextView wrapped into FrameLayout which expands after clicking on 'More' label.
...
2
votes
2answers
65 views
How to create a user Environment variable that *calls* %date% or %time% each time it's invoked?
I'm trying to create 2 user environment variables with the following defintion:
datel=%date:~-4%%date:~3,2%%date:~0,2%
datetime=%date:~-4%%date:~3,2%%date:~0,2%-%time:~0,2%_%time:~3,2%_%time:~6,2%
...
2
votes
1answer
63 views
Script analysing DIV height non function
I have the following script that is not appearing to work.
var height = $('#sidebar1').height();
var pageHeight = $(window).height();
if ((height) > 600) {
alert('haha');
}
The ineveitable ...
2
votes
2answers
306 views
What code do i need to collapse a div when another is open?
i use a simple bit of code to make a div collapse, this is it:
<script language="JavaScript">
<!--
function expand(param)
{
...
2
votes
3answers
272 views
How do I use Python to easily expand variables to strings?
What's a nice idiom to do this:
Instead of:
print "%s is a %s %s that %s" % (name, adjective, noun, verb)
I want to be able to do something to the effect of:
print "{name} is a {adjective} {noun} ...
2
votes
2answers
3k views
Apache POI Excel - how to configure columns to be expanded?
I am using Apache POI API to generate excel spreadsheet to output some data.
The problem I am facing is when the spreadsheet is created and opened, columns are not expanded so that some long text ...
2
votes
2answers
300 views
jQuery: List expands on page load
I've been looking for something very simple: How to make a side navigation expand with animation on page load, but all the tutorial websites I usually go to don't seem to have it.
The closest I ...
2
votes
3answers
208 views
Why does this cause a syntax error?
In python, I wrote this:
bvar=mht.get_value()
temp=self.treemodel.insert(iter,0,(mht,False,*bvar))
I'm trying to expand bvar to the funtion call as arguments.
But then it return,
File ...
2
votes
4answers
441 views
Emacs global configuration of tabs
I'm attempting to switch from Vim to Emacs, but I'm tearing my hair out trying to configure it to treat tabs how I wish. I require:
Inserted "tabs" to be expanded into two spaces. Emacs stubbornly ...
2
votes
2answers
268 views
JTree keep expanding problem
I want to keep my jTree file expanded. I using below code to expand the jTree :
public void expandAll(JTree tree) {
int row = 0;
while (row < tree.getRowCount()) {
...
2
votes
1answer
3k views
Slide expand animation in android
I have a simple list view listing results in android. Upon click of each item, I would like it to slide down expand and show the content. Is there an easy way to do this in android?
Any help will be ...
2
votes
3answers
179 views
Problems Expanding an Array in C++
I'm writing a simulation for class, and part of it involves the reproduction of organisms. My organisms are kept in an array, and I need to increase the size of the array when they reproduce. Because ...
2
votes
2answers
899 views
Help with Collapse and Expand Accordion at same time using JQuery (demo)
I'm stuck on an Expand/Collapse accordion using JQuery.
After the initial headline is clicked and it expands, if you click to another headline it will collapse the former headline completely FIRST ...
2
votes
1answer
1k views
How to make QLineEdit expand inside QScrollArea
I have a QLabel and a QLineEdit inside a QWidget. When I have the widget inside a QScrollArea, the line edit does not expand to occupy the excess width of the window. When the widget is not inside the ...
2
votes
3answers
7k 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't working... ...
2
votes
5answers
4k views
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 ...
2
votes
1answer
245 views
Why IExpando.AddMethod was not called?
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 ...
2
votes
7answers
2k views
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. ...
1
vote
0answers
44 views
JQuery Tree File Expand Folders
regarding this Thread: enter link description here
i tried to get the workdaround of Bermo running...
It works but only for folders like
/images/fruit/
but not for a folder like:
...
1
vote
0answers
82 views
Multi-level expanding jquery menu to expand/show a submenu if the current page is within that submenu item?
I'm wanting this menu: http://jsfiddle.net/tz37m/1/ to work a little better across the site so that if someone is on a page within a submenu, that submenu is open when they are on that page. I also ...
1
vote
1answer
66 views
collapse and expanding groups for checkboxes
I have a mysql query that gets displayed via PHP. Each returned record is assigned a checkbox. a column in the table (ReleaseNumber) has a number which groups the different records. How can I create ...
1
vote
3answers
88 views
jQuery inputs focused, blurred and everything inbetween
I have three inputs. I want them all to start and end with the same width but in the event one of them is clicked, i want that one to increase width and ALL THE OTHERS to decrease widths. Is there a ...
1
vote
1answer
79 views
Re-size Array (like expanding and image) - Java
Sorry let me rephrase the question,
I need to figure out how to move each element of the array into the new array: like for the "x" position of each element would be moved to "x*2" and "x*2+1": so ...
1
vote
2answers
72 views
jquery collapse and expand (reveal)
There are number of news boxes on a page that collapse and expand content when clicked. Seems to its ok, but one news box is already opened, user has to click twice on another news box to get it to ...