Re: [qooxdoo-devel] Window.close()

2006-09-13 Thread Alex D.
You can override the _onclosebuttonclick routine of the window, but i solved this problem with a flag in my code. Cheers, alex.d I have exactly same question. Let me know if you find a way to detect it. --Tomek Alex D. wrote: Hi, Is it possible to detect whether a window was clo

Re: [qooxdoo-devel] New documentation for DateChooser

2006-09-13 Thread dperez
Yes, you were right, the line ending was the cause of the wrong diff file. I'll take into account next time. Here are the right diff: http://www.nabble.com/user-files/236005/DateChooser.diff DateChooser.diff Andreas Junghans wrote: > > Am 13.09.2006 um 16:59 schrieb Andreas Junghans: > >>

Re: [qooxdoo-devel] Need 3rd party add-on in IE7 ?

2006-09-13 Thread Sebastian Werner
I think it's because the client detection of our online tracker which is included in the demos. Just accept it. After accepting it should be hidden in the future. Sebastian frederic schrieb: > Hello, > when I run Qooxdoo demos (all except Ataglance) on IE7 beta 3, an info bar > appears at the

Re: [qooxdoo-devel] Window.close()

2006-09-13 Thread Tomek Loboda
I have exactly same question. Let me know if you find a way to detect it. --Tomek Alex D. wrote: > Hi, > Is it possible to detect whether a window was closed with > close-cross-button(at the top-right) or just with window.close? > > Regards, > alex.d > > --

[qooxdoo-devel] 答复: [qooxdoo-devel] 答复: about globe app event in qooxdoo

2006-09-13 Thread Wenhua.Li
Hi,folks For example a global timer may catch message from the server, if message coming, and the timer may dispatch a global event which name for example named "globalexamplemessage", and other component can register the "globalexamplemessage" event and listener the event, all the event notify

[qooxdoo-devel] 答复: [qooxdoo-devel] 答复: about globe app event in qooxdoo

2006-09-13 Thread Wenhua.Li
Hi, Provide some simple example of the global event? I think I can not, because I do not know how to implement the example use global event, so I just ask you and hope you can give me some example, do you know my requirement? -邮件原件- 发件人: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 代表 dp

[qooxdoo-devel] Need 3rd party add-on in IE7 ?

2006-09-13 Thread frederic
Hello, when I run Qooxdoo demos (all except Ataglance) on IE7 beta 3, an info bar appears at the top of the browser : http://www.nabble.com/user-files/235999/qx.gif The message is : "the website wants to run the following add-on: 'QuickTimeCheck Scriptable Object' from 'Apple Computer, Inc. (unver

Re: [qooxdoo-devel] New documentation for DateChooser

2006-09-13 Thread Andreas Junghans
Am 13.09.2006 um 16:59 schrieb Andreas Junghans: > Hi David, > > Am 13.09.2006 um 12:49 schrieb dperez: > >> I would be happy when someone consider my contribution >> >> I know the qooxdoo developers are very busy, but I write this for >> avoiding >> my contrib to be buried in the many receive

Re: [qooxdoo-devel] New documentation for DateChooser

2006-09-13 Thread Andreas Junghans
Hi David, Am 13.09.2006 um 12:49 schrieb dperez: > I would be happy when someone consider my contribution > > I know the qooxdoo developers are very busy, but I write this for > avoiding > my contrib to be buried in the many received forum messages. > http://www.nabble.com/user-files/23595

Re: [qooxdoo-devel] String compression (enabled by default)

2006-09-13 Thread dperez
Thanks Sebastian, I see now. Sebastian Werner wrote: > > No it removes all string instances and replace them with a global array > access: > > var foo = "hello" + " " + "world"; > > will be automatically converted to something like: > > var foo = $[22] + $[12] + $[504]; > > This increases

Re: [qooxdoo-devel] String compression (enabled by default)

2006-09-13 Thread dperez
Thanks Sebastian, I see now. Sebastian Werner wrote: > > No it removes all string instances and replace them with a global array > access: > > var foo = "hello" + " " + "world"; > > will be automatically converted to something like: > > var foo = $[22] + $[12] + $[504]; > > This increases

Re: [qooxdoo-devel] qooxdoo-devel Digest, Vol 4, Issue 50

2006-09-13 Thread V Senthil
Hai robert, Add this line before creating the Qxlistview object. QxWidget.flushGlobalQueues(); Regards senthil.V [EMAIL PROTECTED] wrote: >Send qooxdoo-devel mailing list submissions to > qooxdoo-devel@lists.sourceforge.net > >To subscribe or unsubscribe via the World Wide Web, visit >

Re: [qooxdoo-devel] Performance issues (maybe ListView?)

2006-09-13 Thread Chris Banford
Now it works for me as well. Maybe I was a bit too quick ? :-) -Chris > It loads OK for me under FF 1.5 > > > Chris Banford wrote: > >> Hi Robert, >> >> Tried to view both your main app, and the reduced test version, but >> Firefox just spins (loading the page). No Javascript timeout error or

Re: [qooxdoo-devel] String compression (enabled by default)

2006-09-13 Thread Sebastian Werner
No it removes all string instances and replace them with a global array access: var foo = "hello" + " " + "world"; will be automatically converted to something like: var foo = $[22] + $[12] + $[504]; This increases the performance of IE6 and maybe even IE7. But as there are already many const

Re: [qooxdoo-devel] String compression (enabled by default)

2006-09-13 Thread dperez
Hi, I don't fully understand the idea. Could you please post a small example of how it works, and the code would be transformed? It is a constant expansion? (i.e.: qx.constant.Event.APPEAR ---> 'appear' ). I suppose it has nothing to do with changing local variable names to shorter ones. Seba

Re: [qooxdoo-devel] Performance issues (maybe ListView?)

2006-09-13 Thread dperez
Have you tried the new qx.ui.table.Table? I haven't compared timings with ListView, becasue I use always the Table component. It is prepared to load data on the fly. Robert-85 wrote: > > > Hello all, > > We are using Qooxdoo to build a Personal Information Manager (PIM). > You can see how it

Re: [qooxdoo-devel] Performance issues (maybe ListView?)

2006-09-13 Thread dperez
It loads OK for me under FF 1.5 Chris Banford wrote: > > Hi Robert, > > Tried to view both your main app, and the reduced test version, but > Firefox just spins (loading the page). No Javascript timeout error or > anything, but neither link actually ran or displayed anything... > > -Chris >

[qooxdoo-devel] Dramatically improved IE7 JavaScript performance

2006-09-13 Thread Sebastian Werner
Hi All! A new post in qooxdoo blog was made available right now: Digg it: http://digg.com/programming/Dramatically_improved_IE7_JavaScript_performance Read it: http://blog.qooxdoo.org/dramatically-improved-ie7-javascript-performance Hope you like it :) Cheers, Sebastian -

Re: [qooxdoo-devel] Performance issues (maybe ListView?)

2006-09-13 Thread Chris Banford
Hi Robert, Tried to view both your main app, and the reduced test version, but Firefox just spins (loading the page). No Javascript timeout error or anything, but neither link actually ran or displayed anything... -Chris > Hello all, > > We are using Qooxdoo to build a Personal Information Man

[qooxdoo-devel] Performance issues (maybe ListView?)

2006-09-13 Thread Robert
Hello all, We are using Qooxdoo to build a Personal Information Manager (PIM). You can see how it looks now: http://www.publicpim.org/ria/php/new.php We got pretty far with the development, and now time is to focus on performance. Enabled the debugger, and managed to increase the speed in some

Re: [qooxdoo-devel] New documentation for DateChooser

2006-09-13 Thread dperez
Hi, I would be happy when someone consider my contribution I know the qooxdoo developers are very busy, but I write this for avoiding my contrib to be buried in the many received forum messages. Forgot to upload the patch...: http://www.nabble.com/user-files/235957/DateChooser.diff DateCho

Re: [qooxdoo-devel] Background color of buttons

2006-09-13 Thread Jim Hunter
As I mentioned a few posts back, I read your post and it doesn't work as listed. The very first line causes the app to not run (I am not using the full release of .5 I have a few revs old. There were too many changes that caused my app to not work and I don't have time to re-write my code again to

Re: [qooxdoo-devel] Background color of buttons

2006-09-13 Thread dperez
Hi Jim, I have posted an example on how to modify appearances in the wiki some weeks ago. http://qooxdoo.org/documentation/developer_manual/appearances It's not complicated to manipulate appearances at all. Jim Hunter-2 wrote: > > The Wiki is flawed, the API Docs don't have any examples o

Re: [qooxdoo-devel] Background color of buttons

2006-09-13 Thread Andreas Ecker
Hi, Jim, unfortunately you are right. The article on appearance is outdated. The previous implementation had severe limitations and flaws that needed to be fixed for qooxdoo 0.6. The themes are now "true" qooxdoo classes. That means, you can derive your own appearance theme from the existing d

Re: [qooxdoo-devel] Background color of buttons

2006-09-13 Thread Sebastian Werner
It's theoretical because I haven't tried it yet myself. So please do it yourself. I enjoy it to help but my time is limited, too ;) And yes, this handling is not quite nice and is already mentioned in a bug report. This will be hopefully fixed in further releases with the enhancements of the in

Re: [qooxdoo-devel] Background color of buttons

2006-09-13 Thread Jim Hunter
The Wiki is flawed, the API Docs don't have any examples of how to manipulate the appearance info, and your suggestions talk in theory. If all I want to do, like you suggest, is to remove the backgroundcolor from the toolbarbutton so that I can then use setBackgroundColor, can you please show some

Re: [qooxdoo-devel] Background color of buttons

2006-09-13 Thread Sebastian Werner
IMHO, the documentation does not follow the way to go. It's better to define an own separate appearance theme and not to modify the existing one. Try your look with inheritance and configure the default appearance theme afterwards would be IMHO the better way. Cheers, Sebastian Jim Hunter s

Re: [qooxdoo-devel] Background color of buttons

2006-09-13 Thread Jim Hunter
Well, I tried to do what the Wiki suggested but it failed on the first line. Here is what I was going to try:theme = qx.manager.object.AppearanceManager.getInstance().getAppearanceTheme();theme.registerAppearance ("myButton",  {    setup : function()    {  this.bgcolor_default = new qx.renderer

Re: [qooxdoo-devel] Background color of buttons

2006-09-13 Thread Sebastian Werner
Jim Hunter schrieb: > I found the Wiki on Appearance changes and it starts out by saying that > you can control the appearance of individual widgets yet there is no > example in the Wiki of how to do that. Telling you that it can be done > is not the same as showing you how it's done on a single