Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
3answers
110 views

Java multidimensional hash/matrix

I have n classes which either stack or do not stack on top of one another. All these classes extend the same class (CellObject). I know that more classes will be added to this list, and I want to ...
3
votes
3answers
55 views

Resolving the stacking order of overlapping items

I have a list of Foo with these properties: class Foo ( Date From Date To int Importance ) The From and To dates of these items can overlap. Where two foos overlap, the foo with the ...
2
votes
3answers
79 views

Vertical stack order of divs rather than horizontal? [closed]

Possible Duplicates: How to stack divs from top to bottom in CSS How to make div stack first vertically then horizontally? Floating or inline elements stack like this: ----------------- | ...
1
vote
1answer
85 views

Stacking UITableViews does not pass touch events beneath its view

I am having 3 UIViews stacked one on top of another UITableview planeView rootView TableView is at the top and rootView at the bottom. (rootView is not visible as TableView is on top of it) I ...
1
vote
0answers
121 views

Help with R Zeroinfl model

I am carrying out a zero-inflated negative binomial GLM on some insect count data in R. My problem is how to get R to read my species data as one stacked column so as to preserve the zero inflation. ...
1
vote
1answer
208 views

Preventing float wrapping without setting parent width

I would like to have several items stack horizontally infinitely (in one row), without setting the width of their parent container. I'm fully aware that setting the container div to width:1000px; will ...
1
vote
3answers
112 views

Movieclip stacking in Actionscript

I'm building a game of which the interface is one of the first items to load on screen. Sound button, pause and all the bits - During the game - all manor of things are dynamically added and removed ...
0
votes
3answers
161 views

Overriding implicit setter method with a trait in Scala

I'm trying to implement a stackable trait pattern in Scala (similar to http://www.artima.com/scalazine/articles/stackable_trait_pattern.html). Here's my attempt. I start defining a simple class: ...
0
votes
1answer
143 views

Simplest jQuery Masonry Script

I looking-for script like jQuery Masonry, but very simplest. Interested me only stacking images without animation, events, etc.
0
votes
1answer
239 views

Negative z-index knocking out links

I'm trying to add a sidebar to my page. The main body container on the page has a box-shadow, so I want the sidebar to appear as though it's coming out from underneath the container so the shadow ...
0
votes
3answers
257 views

Stacking a listview on top of a textview Android

In my activity I need a ListView on top of my TextView. How can I achieve such a thing? Thanks Mitchell
-1
votes
4answers
594 views

PHP output buffer stacking question/problem

The following is not achieving what I desire <? echo ob_start() . "<br>"; echo "1x<br>"; echo ob_start() . "<br>"; echo "2x<br>"; echo ob_flush() . "<br>"; echo ...