[qooxdoo-devel] qooxdoo causes some html elements to become position: fixed;

2007-06-15 Thread hired-gun
I have an existing page that I'm adding qooxdoo widgets to. I have build a skeleton project and then just placed my page in the source directory and added a script element to bring in the skeleton custom.js script. When I do this, a couple of my div elements suddenly act like they have css style "

[qooxdoo-devel] how to center a tabview control

2007-06-15 Thread hired-gun
I have a page with some existing html. I want to add a tabview to a div element that I have already set up so it will be centered within its parent. I've tried using a qx.ui.basic.Inline() and attaching it to my div element, then adding my tabview to the Inline control. This doesn't work. It looks

Re: [qooxdoo-devel] more questions on theme support

2007-06-14 Thread hired-gun
I've tried to reduce this to the simplest possible test. I created a new skeleton and added only this to the make file: APPLICATION_THEME_COLOR = custom.QuickstoreColors.js I have placed a file named QuickstoreColors.js in the ./class/custom directory with the following contents: alert("process

[qooxdoo-devel] more questions on theme support

2007-06-13 Thread hired-gun
Thanks to Fabian for answering my previous question about themes. I'm still strugglng tho. I am trying to extend an existing color scheme. I couldn't figure out where to add the script file. I tried editing my 'make' generated custom.js file with the line: \ right before the line that loads my

[qooxdoo-devel] changing themes

2007-06-13 Thread hired-gun
I've been struggling with creating a new theme. I am trying to use the api to change the theme like this: qx.theme.manager.Appearance.getInstance().setAppearanceTheme(qx.theme.ClassicLunaBlue); As you can see, I'm using one of the existing themes. I added this line in the main() function in Appl