Re: [qooxdoo-devel] How can I listen for Layout resize events?

2006-12-05 Thread Jim Hunter
No need to apologize, we all learned something from the post which makes it very useful, thanks! Jim On 12/5/06, Simon Bull <[EMAIL PROTECTED]> wrote: I see the solution... you can do: clientDocument.addEventListener("windowresize", layout._handleResize, layout); without stomping on clientD

Re: [qooxdoo-devel] Two question of using qooxdoo!

2006-12-05 Thread Sebastian Werner
李宇光 schrieb: > Hi all, > I am new to Qooxdoo,there I has two problem: > 1. I code a page,then when I browse it in IE,it will auto-open a Debug > info window,How can I make the debug window hide? or do not auto-open? You can reduce the debug level. Please take a look at the logger documentation at

Re: [qooxdoo-devel] How can I listen for Layout resize events?

2006-12-05 Thread Simon Bull
I see the solution... you can do: clientDocument.addEventListener("windowresize", layout._handleResize, layout); without stomping on clientDocument's existing "windowresize" listener. Sorry for the spam folks, Simon - Original Message From: Simon Bull <[EMAIL PROTECTED]> To: qooxdo

Re: [qooxdoo-devel] Two question of using qooxdoo!

2006-12-05 Thread 鹏举马
1. qx.dev.log.Logger.ROOT_LOGGER.removeAllAppenders(); 2.:-( 在06-12-6,李宇光 <[EMAIL PROTECTED]> 写道: Hi all, I am new to Qooxdoo,there I has two problem: 1. I code a page,then when I browse it in IE,it will auto-open a Debug info window,How can I make the debug window hide? or do not auto-open?

[qooxdoo-devel] How can I listen for Layout resize events?

2006-12-05 Thread Simon Bull
Hi All, Does anyone know of a neat way to listen for any resize events of a Layout? Specifically, I have a CanvasLayout contained within the ClientDocument that is resized when the user resizes the browser window. I need to execute some logic when this CanvasLayout is resized. I see that Clie

Re: [qooxdoo-devel] Vertical Layout Problem

2006-12-05 Thread Daniel Gagnon
Thanks, it works great now. - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys - and earn c

[qooxdoo-devel] Two question of using qooxdoo!

2006-12-05 Thread 李宇光
Hi all, I am new to Qooxdoo,there I has two problem: 1. I code a page,then when I browse it in IE,it will auto-open a Debug info window,How can I make the debug window hide? or do not auto-open? 2. I use qooxdoo with JSF's Facelets which need the doctype for "xhtml" ,so I must write "http:/

[qooxdoo-devel] Table with embeded controls in the cell

2006-12-05 Thread Jim Hunter
I have searched the archives and don't see a solution for my problem. I am in need of placing a button into the cell of a Table. And naturally I need to be able to respond to the click event of that button. Alternatively, I might be able to get away with a HotLink in the cell (did not see any exam

Re: [qooxdoo-devel] qooxdoo 0.6.1 - How to select tab? & bad path separator

2006-12-05 Thread Kirk Abbott
> This could not work because you use a Windows-Path here. You must use a > unix like path. To access your harddrive in cygwin you should use > > /cygdrive/c/work/jtools/thinclients/qooxdoo/qooxdoo-0.6.1-sdk I will try your suggestion and let you know if it works... > $ python > import os

[qooxdoo-devel] some issues with a login form

2006-12-05 Thread morb
Hi, I'm very glad that I have found Qooxdoo - it's really what I have look for. I need a user login form for my application. The basics work...but - the username and userpassword are not transmited - the protection against multiple send requests at the same time don't work var loginName = new

Re: [qooxdoo-devel] Variable scope / minor qx compiler/optimizer bug

2006-12-05 Thread Martin Schaefer
Hi, just found qooxdoo 0.6.3 for download which resolves the issue below. Thanks to the developers and keep up your great work! Regards, Martin Martin Schaefer <[EMAIL PROTECTED]> wrote: > >Hi all, > >something puzzled me with qx 0.6.2 and I couldn't find anything related in >bugzilla: > >A f

Re: [qooxdoo-devel] Native IE7 XMLHttpRequest object incompatibility problem

2006-12-05 Thread Dietrich Streifert
As a first workarround I've overridden the class method qx.io.remote.XmlHttpTransport.isSupported so the test for native xmlhttp fails if the client is mshtml: if (window.XMLHttpRequest && !qx.sys.Client.getInstance().isMshtml()) Dietrich Streifert schrieb: > Hello List, > > I'm currently t

[qooxdoo-devel] Native IE7 XMLHttpRequest object incompatibility problem

2006-12-05 Thread Dietrich Streifert
Hello List, I'm currently testing my application against IE7. I'm using XMLHttpRequest (via RemoteRequest) and doing sometimes manipulations of the received XML document. In some scenarios I need to create a xml document and copy nodes from one document to the other, in this case from a xmlhtt

[qooxdoo-devel] qx.sys.Client::getLocale

2006-12-05 Thread Martin Schaefer
Hi all, can anybody tell me what locale is returned by the getLocale/getLocaleVariant methods of the qx.sys.Client class? It seems to be the language of the browser user interface. I expected the language setting of the browser's options, which is used for requests. Is there any way to get to the

Re: [qooxdoo-devel] How to receive GET or POST data outside of anapplication

2006-12-05 Thread Yasu Takahashi
Hi Oliver, Oh yeah, It is just a Javascript. Thank you so much! I think I can work from here! And many thanks to Martin. Happy programming! On 12/5/06, Oliver Jäpel <[EMAIL PROTECTED]> wrote: Hi, i think, what you're looking for is 'window.location.search', which stores the parameter inform

Re: [qooxdoo-devel] Vertical Layout Problem

2006-12-05 Thread Sebastian Werner
Henric Johansson schrieb: > I think I know this one. The HorizontalBoxLayout has no height, so the > VerticalBoxLayout puts them on the same top value, so to speak. Just add a > .setHeight("auto") to the HorizontalBoxLayouts and it should work. > > I do not know if it's intended though. It's in

Re: [qooxdoo-devel] How to receive GET or POST data outside of an application

2006-12-05 Thread Yasu Takahashi
Hi Martin, Thank you for replying me. Sorry, I think my example was just confusing. It is nothing to do with the RpcTree or List object. I want to receive values (ID) from outside of my Application called " xxxsoft.TaxonomySelectorApplication" , then use the ID to get some data from database to d

[qooxdoo-devel] Variable scope / minor qx compiler/optimizer bug

2006-12-05 Thread Martin Schaefer
Hi all, something puzzled me with qx 0.6.2 and I couldn't find anything related in bugzilla: A function creates a button and adds an event listener (in this "anonymous inner method"-way, or whatever you'd call that in JavaScript). Now the event handler modifies a variable 'tableModel' defined i

Re: [qooxdoo-devel] How to receive GET or POST data outside of anapplication

2006-12-05 Thread Oliver Jäpel
Hi, i think, what you're looking for is 'window.location.search', which stores the parameter information of a uri. you can then use 'split()' to parse the variables and values of that string... cheers Oliver -Ursprüngliche Nachricht- Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Au

Re: [qooxdoo-devel] How to receive GET or POST data outside of an application

2006-12-05 Thread Martin Schaefer
Hi Yasu, I might get you wrong, but possibly you misunderstand the concept: When you write a qooxdoo "application" you only write the frontend, i.e. the client which (once downloaded) resides and is executed in the browser. From this application you can communicate with some server-side component

Re: [qooxdoo-devel] How to receive GET or POST data outside of an application

2006-12-05 Thread Adnoh
I think what you want is only possible with a backend like php or java. What do you wanne do exactly !? The only posiblility I see is to use a reg-exp over the url - so you could build one which searches for ? and parses the rest of the line as variable=value definitions. Yasu Takahashi schrie

Re: [qooxdoo-devel] How to receive GET or POST data outside of an application

2006-12-05 Thread Martin Schaefer
Concerning my earlier mail: Of course you'd need a server side application to consume the request. Yasu Takahashi <[EMAIL PROTECTED]> wrote: >Hi, >This is my first post. >I cannot find any examples or documents about receiving GET or POST data >sending to application. My application url is like

Re: [qooxdoo-devel] How to receive GET or POST data outside of an application

2006-12-05 Thread Martin Schaefer
Hi Yasu, am just as new as you, and I didn't try the RpcTree, yet, but in general I found this works (leave out the Json part if you don't need it): var req = new qx.io.remote.RemoteRequest(url, "GET", "text/plain"); var data = 0; req.addEventListener("completed", function(e) { data = e.getD

Re: [qooxdoo-devel] How to receive GET or POST data outside of an application

2006-12-05 Thread Yasu Takahashi
Hi again, Thanks for the reply. Because my project On 12/5/06, Adnoh <[EMAIL PROTECTED] > wrote: I think what you want is only possible with a backend like php or java. What do you wanne do exactly !? The only posiblility I see is to use a reg-exp over the url - so you could build one which se

Re: [qooxdoo-devel] How to receive GET or POST data outside of an application

2006-12-05 Thread Yasu Takahashi
Hi there, My project is compose of normal PHP/HTML/CSS programs and this new QOOXDOO stuff I try to use for displaying all (Taxonomy) data in Tree. Because of this I need to some how get data from outside of QOOXDOO Application. http://192.168.200.42/npedia/admin/search.php <-- Normal PHP/HTM

Re: [qooxdoo-devel] Where to report probable bugs

2006-12-05 Thread Sebastian Werner
If you are not sure, please report it to this list first. Cu, Sebastian Martin Schaefer schrieb: > Hi all, > > forgive a newbie's question: do I report a potential qooxdoo bug to this > list or in bugzilla? > > Kind regards > Martin > > > > --

[qooxdoo-devel] How to receive GET or POST data outside of an application

2006-12-05 Thread Yasu Takahashi
Hi, This is my first post. I cannot find any examples or documents about receiving GET or POST data sending to application. My application url is like this. http://192.168.200.42/npedia/admin/taxonomySelector/source/ and I want to send data to it like http://192.168.200.42/npedia/admin/taxonom

[qooxdoo-devel] Where to report probable bugs

2006-12-05 Thread Martin Schaefer
Hi all, forgive a newbie's question: do I report a potential qooxdoo bug to this list or in bugzilla? Kind regards Martin - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'