Re: [qooxdoo-devel] New way to add to existing qooxdoo objects

2007-03-05 Thread Fabian Jakobs
Hi, > //--- > /** > * New _updateContent function that checks for disposed table. > * This is needed because _updateContent can be called after all > * processing has been finished, which might include destruction > * of the table. > */ >

Re: [qooxdoo-devel] New releases ahead

2007-03-05 Thread Fabian Jakobs
Cornelius Weiss schrieb: > Hi Andreas, > > > Safari crashes by opening the api-viewer from 6.6.6-rc1. > Not shure if this is a good sign :-) > > cu > cornelius > Hi Cornelius, Safari support is limited to the nightly Webkit releases, which work fine here. Which version of Safari do you use?

Re: [qooxdoo-devel] New releases ahead

2007-03-05 Thread Andreas Ecker
Howdy! > Safari crashes by opening the api-viewer from 6.6.6-rc1. > Not shure if this is a good sign :-) No, that's not intended behavior. It might be for a true "6.6.6" release, though ... ;-) What's your Safari version? What about opening a sample application like http://demo.qooxdoo.org/0.6.

Re: [qooxdoo-devel] Creating appearance theme

2007-03-05 Thread Andreas Ecker
Hi Jim! > Jim Hunter > The article you referenced does not seem to be there any more. Was it > moved/removed/replaced? It was renamed to http://qooxdoo.org/documentation/user_manual/create_a_custom_appearance In cases like this, the full text search option for the entire homepage is quite handy.

Re: [qooxdoo-devel] Creating appearance theme

2007-03-05 Thread Jim Hunter
The article you referenced does not seem to be there any more. Was it moved/removed/replaced? I am having an issue with appearances after migrating to 0.6.6.. When I get the default theme with qx.manager.object.AppearanceManager.getInstance ().getAppearanceTheme(); it returns null, so when I try

Re: [qooxdoo-devel] New releases ahead

2007-03-05 Thread Cornelius Weiss
Hi Andreas, Safari crashes by opening the api-viewer from 6.6.6-rc1. Not shure if this is a good sign :-) cu cornelius Andreas Ecker schrieb: > Howdy, > > we are currently in the process of preparing two new releases. Well, > actually it is more 1.5 releases ;-) : > > - qooxdoo 0.6.6 is suppose

[qooxdoo-devel] Bug submissions in bugzilla.qooxdoo.org are registered twice

2007-03-05 Thread Dietrich Streifert
I don't know if this is just a problem of my installation but somehow the last two bugs which I've submitted got stored twice. This also happens if I submit attachments which then are showing up twice in the attachment list of a bug. Could someone please verify this? Thank you. -- Mit freund

Re: [qooxdoo-devel] New releases ahead

2007-03-05 Thread Dietrich Streifert
Hi Andreas, please have a look at http://bugzilla.qooxdoo.org/show_bug.cgi?id=312 which shows a bug related to the new popup calculation algorithm introduced with rev. 6688 by Alexander Back. This is a stopper for the upcoming 0.6.6 release. Andreas Ecker schrieb: > Howdy, > > we are current

[qooxdoo-devel] New releases ahead

2007-03-05 Thread Andreas Ecker
Howdy, we are currently in the process of preparing two new releases. Well, actually it is more 1.5 releases ;-) : - qooxdoo 0.6.6 is supposed to be the most stable version so far. It is recommended for production use and all applications should be migrated to this release. - qooxdoo 0.7-alpha1

Re: [qooxdoo-devel] New way to add to existing qooxdoo objects

2007-03-05 Thread Hugh Gibson
> So yes, I is not that easy to get access to the old method... mhh. > Maybe you can store yourself the old reference... That's what I've done when patching in the old qooxdoo. For example: // // Remember old _updateContent function // qx.ui.table.TablePaneScroller.prototype._unsafe_updateConte

Re: [qooxdoo-devel] Invalid click handling in qx.ui.table.Table outside the data ar

2007-03-05 Thread Hugh Gibson
> I've create a bug for this three month ago and assigned the bug to > Tilman Schneider but for some reason he did not react on this: I have also asked Til about some things to do with table, posted on this list - with no response. Any word on Til, or should Derrell take on this as he has done

Re: [qooxdoo-devel] GuiBuilder Table

2007-03-05 Thread Christian Boulanger
samanta wrote: > Hi, > I've searched for some example (without any success) in order to learn how > to create a table with the GuiBuilder object. > > Is there someone that can help me? How the table Xml structure should be > realised? > > I'm looking forward to an answer, please help! > > Best re

[qooxdoo-devel] aligns in table-cells

2007-03-05 Thread Tobias Koller (GERMO GmbH)
Hello, is it possible to use something like horizontalAlign or verticalAlign in a table-cell to position the text/Images? thanks Tobias - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Tech

[qooxdoo-devel] Invalid click handling in qx.ui.table.Table outside the data area

2007-03-05 Thread Dietrich Streifert
Hello List When qx.ui.table.Table has a data area which does not cover the complete table pane (the table pane area has free space to the right of the last column) clicking in this area leads to some missbehaviour in row focus and selection handling. The bug can be observed in the Table 1 Test

[qooxdoo-devel] GuiBuilder Table

2007-03-05 Thread samanta
Hi, I've searched for some example (without any success) in order to learn how to create a table with the GuiBuilder object. Is there someone that can help me? How the table Xml structure should be realised? I'm looking forward to an answer, please help! Best regards -- View this message in

Re: [qooxdoo-devel] New way to add to existing qooxdoo objects

2007-03-05 Thread Sebastian Werner
--snip-- >>> Anyhow one thing is missing in the patch implementation (as Fabian >>> said): The possibility to get access to the original method. So when a >>> mixin re-implements a method, the old method should still be accessible >>> from within the new method implementation. If a mixin patche

Re: [qooxdoo-devel] New way to add to existing qooxdoo objects

2007-03-05 Thread Dietrich Streifert
Sebastian Werner schrieb: Dietrich Streifert schrieb: Sebastian Werner schrieb: Dietrich Streifert schrieb: Fabian Jakobs schrieb: Dietrich Streifert schrieb: Thank you Jim. That sounds promising. I also used to extend qx.ui.core.Widget

Re: [qooxdoo-devel] New way to add to existing qooxdoo objects

2007-03-05 Thread Sebastian Werner
Dietrich Streifert schrieb: > > > Sebastian Werner schrieb: >> Dietrich Streifert schrieb: >> >>> Fabian Jakobs schrieb: >>> Dietrich Streifert schrieb: > Thank you Jim. > > That sounds promising. I also used to extend qx.ui.core.Widget with my >

Re: [qooxdoo-devel] New way to add to existing qooxdoo objects

2007-03-05 Thread Dietrich Streifert
Sebastian Werner schrieb: Dietrich Streifert schrieb: Fabian Jakobs schrieb: Dietrich Streifert schrieb: Thank you Jim. That sounds promising. I also used to extend qx.ui.core.Widget with my own set of properties by using the qx.Proto = ..classname.. syntax. One more qu

Re: [qooxdoo-devel] New way to add to existing qooxdoo objects

2007-03-05 Thread Sebastian Werner
Dietrich Streifert schrieb: > Fabian Jakobs schrieb: >> Dietrich Streifert schrieb: >> >>> Thank you Jim. >>> >>> That sounds promising. I also used to extend qx.ui.core.Widget with my >>> own set of properties by using the qx.Proto = ..classname.. syntax. >>> >>> One more question left ;-) >>>