[qooxdoo-devel] please do this, for a free ipod nano

2006-09-15 Thread [EMAIL PROTECTED] using getitfree.net
hey, go here and we both get a free ipod nano pretty pretty please :) http://www.getitfree.net/xzxynprro This was sent by [EMAIL PROTECTED] via GetItFree, Box 8156, San Jose CA 95155 Visit this page to prevent delivery of future GetItFree.net referral emails

[qooxdoo-devel] Remove navBar in dateChooser

2006-09-15 Thread Mike Crowe
Hi folks, I want to build a year grid of DateChoosers (show a year at a time, etc). However, to do it I'd need to hide the navBar. Is this easy? Can somebody give me a pointer? TIA Mike - Using Tomcat but need to do more? N

[qooxdoo-devel] window.innerWidth or document.body.offsetWidth

2006-09-15 Thread Mike Crowe
Hi folks, Is there a qooxdoo variable that universally shows the width/height of the browser window? I've searched but can't find. Mike - Using Tomcat but need to do more? Need to support web services, security? Get stuff d

[qooxdoo-devel] Does anyone have a working File Upload?

2006-09-15 Thread Jim Hunter
Using the .6 version, does anyone have a working File Upload regardless of how kludgy it might be? I thought I would implement it the same way I did it in my previous application but that requires the modal dialog window that only IE has, and I need this to support all browsers. As an alternative,

Re: [qooxdoo-devel] qx.io.remote.rpc error-bubbling

2006-09-15 Thread Derrell . Lipman
"Alex D." <[EMAIL PROTECTED]> writes: > i have following problem with qx.io.remote.rpc.callAsync(): > in case of an error in backend( in php-script for example) > qx.io.remote.XmlHttpTransport throws an error: *Could not execute json: * > That's OK, but the problem is that this error doesn't

[qooxdoo-devel] qx.io.remote.rpc error-bubbling

2006-09-15 Thread Alex D.
Hi folks, i have following problem with qx.io.remote.rpc.callAsync(): in case of an error in backend( in php-script for example) qx.io.remote.XmlHttpTransport throws an error: Could not execute json: That's OK, but the problem is that this error doesn't bubble up to my class though i can

[qooxdoo-devel] Minor API change: resize event

2006-09-15 Thread Sebastian Werner
Hi! With the recent SVN version there was a little change regarding the qooxdoo API. The client document known from 0.6 fired the events "resize", "blur" and "focus" when the window was resized, blurred or focused. The problem with "blur" and "focus" however was a conflict with the other event

[qooxdoo-devel] Move encode64 function to someplace public (was AW: Basic HTTP authentication fixes)

2006-09-15 Thread Derrell . Lipman
Fabian Jakobs <[EMAIL PROTECTED]> writes: > shouldn't we put the encode64 function somewhere else so it can be used > outside of XmlHttpTransport? I would suggest to put it into > qx.lang.String.encode64. Sebastian, this seems like a good suggestion. Is String the best place to put it, or is the

Re: [qooxdoo-devel] Basic HTTP authentication fixes

2006-09-15 Thread Derrell . Lipman
Antony Zanetti <[EMAIL PROTECTED]> writes: > You've camel-cased the property name but you forgot to change the calls to > the getter and setter ;-) How in the world did I manage that??? Thanks! Derrell - Using Tomcat but n

[qooxdoo-devel] Target.js patch

2006-09-15 Thread Fabian Jakobs
Hi,   I’ve added a type check for the event name to addEventListener. This detects errors if a constant name of an event type is misspelled and thus undefined is passed (happened to me).   Best Fabian   Target.js.diff Description: Binary data ---

Re: [qooxdoo-devel] Public API browser bug !!!

2006-09-15 Thread Andreas Ecker
Thanks Fabian, fixed some typos and synced the api viewer. It should work now again. Bye, Andreas Fabian Jakobs wrote: > Hi, > > the public API browser (http://api.qooxdoo.org) is not working anymore. I > get the following error message: > > 002933 ERROR: qx.io.remote.RemoteExchange[84]: Re

[qooxdoo-devel] Public API browser bug !!!

2006-09-15 Thread Fabian Jakobs
Hi, the public API browser (http://api.qooxdoo.org) is not working anymore. I get the following error message: 002933 ERROR: qx.io.remote.RemoteExchange[84]: Request handler throws error: TypeError - vRequest.getUseBasicHTTPAuth is not a function     Best Fabian -

Re: [qooxdoo-devel] XML DOM

2006-09-15 Thread dperez
Hi all, By using XSLT it is quite easy to convert any XML data into JSON format. That's exactly what I'm doing. Derrell.Lipman wrote: > > Instead, you can try one of: > > - use JSON-RPC to issue remote procedure calls to PHP from your qooxdoo > application. See the examples in > frontend/d

Re: [qooxdoo-devel] XML DOM

2006-09-15 Thread Andreas Junghans
Hi Fabian, Am 15.09.2006 um 11:56 schrieb Fabian Jakobs: > You don't neet to install sarissa to don't need sarissa to do cross- > browser xml parsing. The qx.lang.XmlEmu package already emulates > the XMLSerializer and DOMParser objects from Firefox in the > Internet Explorer. Ah, thanks -

Re: [qooxdoo-devel] Basic HTTP authentication fixes

2006-09-15 Thread Fabian Jakobs
Title: AW: [qooxdoo-devel] Basic HTTP authentication fixes Hi Derrell, shouldn't we put the encode64 function somewhere else so it can be used outside of XmlHttpTransport? I would suggest to put it into qx.lang.String.encode64. Best Fabian -Ursprüngliche Nachricht- Von: [EMAIL PRO

Re: [qooxdoo-devel] XML DOM

2006-09-15 Thread Fabian Jakobs
Title: AW: [qooxdoo-devel] XML DOM Hi Andreas, You don't neet to install sarissa to don't need sarissa to do cross-browser xml parsing. The qx.lang.XmlEmu package already emulates the XMLSerializer and DOMParser objects from Firefox in the Internet Explorer. Best Fabian -Ursprüngliche

Re: [qooxdoo-devel] Another ComboBox bug

2006-09-15 Thread dperez
Sebastian, That's a good and easier solution. Sebastian Werner wrote: > > I think the combobox itself should have the tabIndes 1, while the > combobox will manually do a focus() call to the text-field (only DOM) > when receive the focus. Just an idea. > -- View this message in context: h

Re: [qooxdoo-devel] Modal window behaviour in ZK

2006-09-15 Thread dperez
Thanks. When some other more basic functionality of my app is working, I'll try your code, and try to update the qx.ui.window.Window class. Ways OfTheEarth wrote: > > Hi there, > > I have implemented a similar thing in my Qx 0.5.x application. > > My app has lots of windows, each with toolba

Re: [qooxdoo-devel] Another ComboBox bug

2006-09-15 Thread Sebastian Werner
dperez schrieb: > Hi, > > One possible solution: > > 1) only textField has the setTabIndex(1) > 2) a custom appearance in the textfield would remove the dotted frame from > the text field > 3) an event listener in the focused state change of the text field would > update the appearance of the com

Re: [qooxdoo-devel] remove selected widget.

2006-09-15 Thread dperez
Hi Pawel, Search the forum archives, this has been answered today. Pawel Cesar Sanjuan Szklarz wrote: > > Hi. > > I create a tree and delete the content. When a create a new content and > select > some node, then a get the error > > 335530 ERROR: qx.ui.Tree.TreeFolder[7129]: Modification of

Re: [qooxdoo-devel] Another ComboBox bug

2006-09-15 Thread dperez
Hi, One possible solution: 1) only textField has the setTabIndex(1) 2) a custom appearance in the textfield would remove the dotted frame from the text field 3) an event listener in the focused state change of the text field would update the appearance of the combobox to draw or remove the dotte

[qooxdoo-devel] remove selected widget.

2006-09-15 Thread Pawel Cesar Sanjuan Szklarz
Hi. I create a tree and delete the content. When a create a new content and select some node, then a get the error 335530 ERROR: qx.ui.Tree.TreeFolder[7129]: Modification of property "selected" failed with exception: TypeError - vTree has no properties I thing that the problem is that WIDGET.r

Re: [qooxdoo-devel] Another ComboBox bug

2006-09-15 Thread Sebastian Werner
I agree with this. But from the look I think it would be better the combobox itself has the dotted focus border and not the text field. That would also match the style of other focused widgets. But I don't directly know how to implement this. Cheers, Sebastian dperez schrieb: > Hi, > > In

Re: [qooxdoo-devel] Another ComboBox bug

2006-09-15 Thread dperez
Hi, In this screenshot taken from Firefox: http://www.nabble.com/user-files/236030/Captura007.gif we see that the edit field is focused even if it is readonly. When using the keyboard, the button at the right is just a visual remainder that we have a list of choices to select from. I vote for

Re: [qooxdoo-devel] Built-in images and themes

2006-09-15 Thread Denis Carl
It works perfectly !! Thank you for this fast answer :) Sebastian Werner wrote: > > You must remove the selection from the element before removing it. After > removal it does not have any relation to a tree anymore. That's why the > error occurs. > > Cheers, > > Sebastian > > > > Carl

Re: [qooxdoo-devel] Built-in images and themes

2006-09-15 Thread Sebastian Werner
You must remove the selection from the element before removing it. After removal it does not have any relation to a tree anymore. That's why the error occurs. Cheers, Sebastian Carl Denis schrieb: > Hi, > > I use this method this way : > > var node = this.getManager().getSelectedItems()[0]

Re: [qooxdoo-devel] Another ComboBox bug

2006-09-15 Thread Sebastian Werner
The problem with this is, that you want to have the text-field focusable. That's mainly because it could be editable for example. We need to find a way to handle both: To focus the combobox itself (because of the tab-order in a form for example) while internally focus the text-field to give th

Re: [qooxdoo-devel] Profiling and Memory Leak Detection

2006-09-15 Thread Sebastian Werner
That's just wrong. I'm sorry. ObjectManager is to manage object instances, but it's not used internally to count all live objects, as you mention. This class could be used by the user to manage own objects/widgets etc. Cheers, Sebastian dperez schrieb: > In addition qooxdoo has a counter o