Skip to content

Instantly share code, notes, and snippets.

@jonathanweiss
Created March 22, 2010 09:53
Show Gist options
  • Save jonathanweiss/339924 to your computer and use it in GitHub Desktop.
Save jonathanweiss/339924 to your computer and use it in GitHub Desktop.
Playground demo for bug #2591
var doc = this.getRoot();
var s = new qx.ui.form.Spinner();
s.setHeight(400);
s.set({
allowGrowX : false,
allowGrowY : false
})
sc = new qx.ui.container.Scroll();
sc.setScrollbar("on", "on");
sc.add(s, {top : 100, left : 10});
doc.add(sc,
{
left : 100,
top : 50
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment