Re: [qooxdoo-devel] IE 6 element.offsetParent

2008-12-01 Thread CSBrown
Box2.add(new qx.ui.basic.Label("Label")); > > var selectBox = new qx.ui.form.SelectBox(); > selectBox.add(new qx.ui.form.ListItem("Test")); > hBox2.add(selectBox); > hBox2.add(new qx.ui.form.TextField()); > > var doc = this.getRoot(); >

Re: [qooxdoo-devel] IE 6 element.offsetParent

2008-12-01 Thread CSBrown
The selectbox has three ListItems added to it before it is displayed. I'll check the height at the point of display to see if it's positive. Chris Jim Hunter-2 wrote: > > Does the selectbox have any items in it? There is a bug in IE where > selectboxes that are empty have a negative height an

Re: [qooxdoo-devel] IE 6 element.offsetParent

2008-11-28 Thread CSBrown
Hi Christian, It's a bit tricky to send a code snippet as there are many classes involved. I'll try to describe the widget hierarchy and what is happenning. The full widget hierarchy is (I've listed layout types, widgets are all Composite unless specific widget type listed) Application Root

[qooxdoo-devel] IE 6 element.offsetParent

2008-11-27 Thread CSBrown
I'm using Qooxdoo 0.8 and have a situation in IE6 where line 190 of qx.dom.Hierarchy throws an 'Unspecified error' This appears to be happening when rendering a SelectBox for the first time although there are several containers around the select box that are also being rendered for the first time

[qooxdoo-devel] ComboBox over table causes additional select in table

2007-05-24 Thread CSBrown
I have a combobox positioned above a table so that the list from the combobox drops down over the table. When I select an entry from the combobox a row on the table is also selected. On closer investigation, the mousedown event on the combobox list selects the item for the combobox and the subseq

Re: [qooxdoo-devel] Creating appearance theme

2007-02-01 Thread CSBrown
Thank you for that, I now have a working appearance theme. I had to base it on the qx.theme.appearance.Classic class as the DefaultAppearanceTheme class does not exist in 0.6.4. Perhaps it does exist in 0.6.5, I'll check that out later today. Also, I found I only needed the last line of code to

Re: [qooxdoo-devel] Creating appearance theme

2007-02-01 Thread CSBrown
Hi, I'm still trying to work out how to register a new appearance theme and make it the default. Have tried several approaches but not found anything that works yet. Can anyone help me with this? Many thanks, Chris. -- View this message in context: http://www.nabble.com/Creating-appearance-t

[qooxdoo-devel] Creating appearance theme

2007-01-24 Thread CSBrown
Hi, I'm creating an appearance theme and wondered if I should define the application colours in the appearance theme or create a corresponding colour theme? Can the appearance and colour themes work together, i.e. reference the colour theme from the appearance theme? Also, if I create a new app

Re: [qooxdoo-devel] Changing the style of a splitpane

2006-12-12 Thread CSBrown
Having posted this, I worked out the problem, I had containers inside each side of the splitpane with a raised border which looked like it was part of the splitter. Chris. -- View this message in context: http://www.nabble.com/Changing-the-style-of-a-splitpane-tf2807159.html#a7833145 Sent from

[qooxdoo-devel] Changing the style of a splitpane

2006-12-12 Thread CSBrown
Is it possible to change the style of a splitpane to use a flat splitter rather than the default style of a raised splitter? Can the colour of the splitter be changed? So far I've tried various settings but have only managed to change the centre section of the splitter leaving a raised grey borde

Re: [qooxdoo-devel] qx.ui.table.Table drag and drop

2006-12-06 Thread CSBrown
Thank you for the example, it works great. I was not checking that the pointer was over a row and so the drag was also starting when the pointer was over the header. This caused the column reorder and the drag to operate concurrently. Thanks, Chris. Til Schneider wrote: > >>Adding a dragstart

Re: [qooxdoo-devel] qx.ui.table.Table drag and drop

2006-12-06 Thread CSBrown
I am trying to implement drag and drop from the table to another component. So far, I have only been able to attach an event to the table but that interferes with resizing and reordering the columns. I am trying to intercept the dragstart and cancel it if it originates from the table header. Also