Re: [qooxdoo-devel] property's init value doesn't always call specified apply method

2007-04-27 Thread Derrell . Lipman
Sebastian Werner <[EMAIL PROTECTED]> writes: > You can call the modifier at init time when executing initPropertyName () > somewhere in the constructor. This function has no parameter if the property > was defined with an init value. For further details please take a look at > the online documenta

Re: [qooxdoo-devel] Changing appearance at runtime?

2007-04-27 Thread Sebastian Werner
Am 28.04.2007 um 00:01 schrieb Philipp Wabinski: > > > > Sebastian Werner wrote: >> >> Changing appearance themes is a lot more complex than switching color >> themes. I don't think this will ever work in 0.6.x. But it will be >> supported with 0.7 if all went well. >> >> Sebastian >> >> > > Than

Re: [qooxdoo-devel] Changing appearance at runtime?

2007-04-27 Thread Philipp Wabinski
Sebastian Werner wrote: > > Changing appearance themes is a lot more complex than switching color > themes. I don't think this will ever work in 0.6.x. But it will be > supported with 0.7 if all went well. > > Sebastian > > Thanks a lot for the quick answer! I will stop tying it ;) Is

Re: [qooxdoo-devel] property's init value doesn't always call specified apply method

2007-04-27 Thread Sebastian Werner
You can call the modifier at init time when executing initPropertyName () somewhere in the constructor. This function has no parameter if the property was defined with an init value. For further details please take a look at the online documentation. Sebastian Am 27.04.2007 um 19:06 schrie

Re: [qooxdoo-devel] Spinner: using a Range other than qx.type.Range

2007-04-27 Thread Sebastian Werner
That was exactly what I meaned. Thank you. Sebastian Am 27.04.2007 um 20:03 schrieb [EMAIL PROTECTED]: > Sebastian Werner <[EMAIL PROTECTED]> writes: > >> Yes the better way would be to check for an Interface. But this >> interface is >> not yet available. If you wanna help out ;) > > That

Re: [qooxdoo-devel] Changing appearance at runtime?

2007-04-27 Thread Sebastian Werner
Changing appearance themes is a lot more complex than switching color themes. I don't think this will ever work in 0.6.x. But it will be supported with 0.7 if all went well. Sebastian Am 27.04.2007 um 22:55 schrieb Philipp Wabinski: > > Hi, > > is it possible to change the appearance theme

[qooxdoo-devel] Changing appearance at runtime?

2007-04-27 Thread Philipp Wabinski
Hi, is it possible to change the appearance theme at runtime? I tried the following: mb1_01.addEventListener("execute",function(ev) { qx.manager.object.AppearanceManager.getInstance().set({appearanceTheme: new qx.theme.appearance.Custom()}); },this); and got

[qooxdoo-devel] label width inside a HorizontalBoxLayout doesn't seem to work

2007-04-27 Thread Joe Hudson
Hello, I'm trying to make a widget that contains a label with a corresponding widget. I'm extending the HorizontalBoxLayout and everything is fine but the width on the label is just being ignored. Am I doing something wrong? qx.Class.define("custom.widget.form.LabeledWidget", { extend : qx

Re: [qooxdoo-devel] Spinner: using a Range other than qx.type.Range

2007-04-27 Thread Derrell . Lipman
Sebastian Werner <[EMAIL PROTECTED]> writes: > Yes the better way would be to check for an Interface. But this interface is > not yet available. If you wanna help out ;) That was easy. :-) Done. Derrell - This SF.net emai

[qooxdoo-devel] property's init value doesn't always call specified apply method

2007-04-27 Thread Derrell . Lipman
If you look at the Table_1.html example with trunk, you'll notice that the column visibility button in the top-right corner is missing. Although I haven't tracked the exact reason yet, the problem is that the method specified by "apply" in the columnVisibilityButtonVisible property is not being ca

Re: [qooxdoo-devel] Spinner: using a Range other than qx.type.Range

2007-04-27 Thread Derrell . Lipman
Sebastian Werner <[EMAIL PROTECTED]> writes: > Yes the better way would be to check for an Interface. But this interface is > not yet available. If you wanna help out ;) Why don't you describe in a bit more detail what you envision, and maybe I'll look into implementing it. Are you saying that

Re: [qooxdoo-devel] Spinner: using a Range other than qx.type.Range

2007-04-27 Thread Sebastian Werner
Yes the better way would be to check for an Interface. But this interface is not yet available. If you wanna help out ;) Sebastian Am 27.04.2007 um 17:31 schrieb [EMAIL PROTECTED]: > I've defined my own Range class for use with the Spinner. This worked > previously, but now Spinner has a ch

Re: [qooxdoo-devel] Spinner: using a Range other than qx.type.Range

2007-04-27 Thread Derrell . Lipman
Leander Hanwald <[EMAIL PROTECTED]> writes: > Sorry, this isn't any help, only a question from my side: > Why do you wrote an own class for controll, that did you class do? One example is a time selector widget, with spinners for the hours, minutes, and am/pm selector. The getter for the hours a

Re: [qooxdoo-devel] Spinner: using a Range other than qx.type.Range

2007-04-27 Thread Leander Hanwald
Hi Sorry, this isn't any help, only a question from my side: Why do you wrote an own class for controll, that did you class do? Did you class based in qx.type.Range? [EMAIL PROTECTED] schrieb: > I've defined my own Range class for use with the Spinner. This worked > previously, but now Spinner

[qooxdoo-devel] Spinner: using a Range other than qx.type.Range

2007-04-27 Thread Derrell . Lipman
I've defined my own Range class for use with the Spinner. This worked previously, but now Spinner has a check constraint to ensure that the provided manager is, explicitly, qx.type.Range. For applications that want to use their own range manager, how does one modify a the Spinner's check constrai

Re: [qooxdoo-devel] ListView, update data

2007-04-27 Thread Siarhei Barysiuk
Thanks Alex! It's exactly what I meant. S. Alex Back wrote: > Hello Siarhei, > > On Friday 27 April 2007 Siarhei Barysiuk wrote: > >> Hello! >> >> Now we're working at support of ListView in QxTransformer and I have one >> question. >> As far as I understand when we create qx.ui.listview.ListV

Re: [qooxdoo-devel] ListView, update data

2007-04-27 Thread Alex Back
Hello Siarhei, On Friday 27 April 2007 Siarhei Barysiuk wrote: > Hello! > > Now we're working at support of ListView in QxTransformer and I have one > question. > As far as I understand when we create qx.ui.listview.ListView we must to > pass data and > columns data to constructor. After creation

[qooxdoo-devel] ListView, update data

2007-04-27 Thread Siarhei Barysiuk
Hello! Now we're working at support of ListView in QxTransformer and I have one question. As far as I understand when we create qx.ui.listview.ListView we must to pass data and columns data to constructor. After creation we can't change this data (I mean set other) because ListView hasn't setters

Re: [qooxdoo-devel] New qooxdoo Application online

2007-04-27 Thread Fabian Jakobs
Siarhei Barysiuk schrieb: > Does anybody know which libraries are used in this project? > > Somebody asked how create XP (or Vista Theme) and as far as I remember > developers answered that qooxdoo would support it in version 0.7. Is it > possible now? > Or UI on this project was created on another

Re: [qooxdoo-devel] New qooxdoo Application online

2007-04-27 Thread Siarhei Barysiuk
Does anybody know which libraries are used in this project? Somebody asked how create XP (or Vista Theme) and as far as I remember developers answered that qooxdoo would support it in version 0.7. Is it possible now? Or UI on this project was created on another library? Siarhei Barysiuk Leander

Re: [qooxdoo-devel] Problem with dispose() in 0.6.6

2007-04-27 Thread Hugh Gibson
> Unfortunately during the > disposal an error is thrown: > 069041 ERROR: qx.ui.table.TablePaneScroller[1039]: Modification of > property "parent" failed with exception: TypeError - this._states has > no properties This might help you: http://www.nabble.com/Problem-disposing-of-a-dialog-on-%22

Re: [qooxdoo-devel] How to reload application code

2007-04-27 Thread Hugh Gibson
> [26/Apr/2007:22:26:41] "GET > /qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/ui/menubar/MenuB > ar.js What is very interesting is that I also see MenuBar.js being requested even though it should be cached. I guess Gecko must decide to never cache it. Weird. > And it takes about 8 seco