Re: [qooxdoo-devel] Label height?

2007-12-03 Thread vbaspcppguy
Ah, ok. And I can see where the problems would lie in trying to support that. Fabian Jakobs-2 wrote: > > vbaspcppguy schrieb: >> Suppose I should clarify. I'm adding text boxes and labels to a >> VerticalLayout as a form, the one that wraps is at the top, as an error

Re: [qooxdoo-devel] Label height?

2007-12-01 Thread vbaspcppguy
Suppose I should clarify. I'm adding text boxes and labels to a VerticalLayout as a form, the one that wraps is at the top, as an error message display. The widgets below do not acknowledge that the label is more than one line and just place themselves over the label. vbaspcppguy

[qooxdoo-devel] Label height?

2007-12-01 Thread vbaspcppguy
I've tried all sorts of things, but cant get the height of a label to change when the text wraps to multiple lines. Is there a different widget I should use or something I'm not doing right? -- View this message in context: http://www.nabble.com/Label-height--tf4928197.html#a14105269 Sent from

Re: [qooxdoo-devel] Focusing a TextField

2007-12-01 Thread vbaspcppguy
Thanks, I'll give that a try. Fabian Jakobs-2 wrote: > > vbaspcppguy schrieb: >> I have a ButtonView that has a text box (among other things) on each of >> its >> pages, I want to set the focus of said textbox when the page is viewed. I >> currently have an

Re: [qooxdoo-devel] re moveEventListener not working?

2007-12-01 Thread vbaspcppguy
> of > line, or to the control that is currently in scope. Can we see the source > code to this? > > Jim > > > On Nov 30, 2007 5:43 AM, vbaspcppguy <[EMAIL PROTECTED]> wrote: > >> >> I use this to add an event to a label: >> line.addE

[qooxdoo-devel] re moveEventListener not working?

2007-11-30 Thread vbaspcppguy
I use this to add an event to a label: line.addEventListener("appear", this.__onAppear, this); I then have these two lines which remove said events in different places: this.lines[0].removeEventListener("appear", this.__onAppear, this); e.getTarget().removeEventListener("appear", this.__onAppea

[qooxdoo-devel] Focusing a TextField

2007-11-24 Thread vbaspcppguy
I have a ButtonView that has a text box (among other things) on each of its pages, I want to set the focus of said textbox when the page is viewed. I currently have an event on textbox:appear but it does not seem to work. When should focus() be called? -- View this message in context: http://ww

[qooxdoo-devel] TextField focus bug

2007-11-24 Thread vbaspcppguy
When a text field is disabled and then enabled the carat is gone but the box still works. -- View this message in context: http://www.nabble.com/TextField-focus-bug-tf4865527.html#a13923874 Sent from the qooxdoo-devel mailing list archive at Nabble.com.

Re: [qooxdoo-devel] Trouble with qx.ui.window.Window

2007-11-13 Thread vbaspcppguy
I got the layout thing fixed, that was just not removing events. Still cant figure out how to center the forms BEFORE they are visible. vbaspcppguy wrote: > > Relevant code: http://pastie.caboo.se/116064 > > I'm having two issues: > > First, the first time a Form is

Re: [qooxdoo-devel] Source load in Firefox painfully slow...

2007-11-13 Thread vbaspcppguy
Nope, firebug isnt great for mem usage, but the ...oh i said firefox toolbar... waha The google toolbar, it is a huge memory leaker. After a couple hours of browsing firefox will be using 300mb for just one page and be uselessly slow. Hugh Gibson wrote: > >> If you have the firefox toolbar, ge

Re: [qooxdoo-devel] Source load in Firefox painfully slow...

2007-11-10 Thread vbaspcppguy
If you have the firefox toolbar, get rid of it. It has huge memory leaks and causes the slow down over time. I had that problem myself. Hugh Gibson wrote: > >> When testing with source in Firefox the load times are painfully >> slow even >> loading from a file:// location because its doing 30

[qooxdoo-devel] Trouble with qx.ui.window.Window

2007-11-09 Thread vbaspcppguy
Relevant code: http://pastie.caboo.se/116064 I'm having two issues: First, the first time a Form is created, it is centered and the events to keep it centered work just fine. After that though, when a Form (any form) is created, it starts centered but the events are giving me a weird error: th

Re: [qooxdoo-devel] Source load in Firefox painfully slow...

2007-11-09 Thread vbaspcppguy
should do what you want. > > Download it and inlcude the js file of qooxdoo in your source html file. > > Greetings, > Leander > > vbaspcppguy schrieb: >> When testing with source in Firefox the load times are painfully slow >> even >> loading from a file://

[qooxdoo-devel] Source load in Firefox painfully slow...

2007-11-09 Thread vbaspcppguy
When testing with source in Firefox the load times are painfully slow even loading from a file:// location because its doing 300+ requests. (On my pc > 30 seconds.) Where as loading from the single compiled build is a matter of a couple seconds. I was wondering if theres a way to create a ...ehm.