[qooxdoo-devel] The locator of qooxdoo's application

2008-04-01 Thread Chi Mo
Hello Everybody, we are using qooxdoo at the moment, and we want to use selenium. My question is, if you look at http://demo.qooxdoo.org/current/showcase/#Form , how can I get the locator for the text fileld of 'Name'? The html code is something like: I also have a piece of code: http://

Re: [qooxdoo-devel] Netscape Navigator 4.08 support

2008-04-01 Thread Hugh Gibson
> > Do you really support Netscape 4.08 with version 0.8 qooxdoo? > That would > > be quite an achievement! > > > > > > Gotcha! ;-) :-D Hugh - Check out the new SourceForge.net Marketplace. It's the best place to buy or

Re: [qooxdoo-devel] How to access DemoBrowser instance inside Atom_1.html?

2008-04-01 Thread kanugula
Yes. You are right. That works. Thanks for your reply. I relalized it using Firebug. Y kanugula wrote: > > Hi, > > My application is built on Demo Browser. For simplicity, I am using Demo > Browser terminalogy. > > I want to pass the Demo Browser Tree node name "example" to Atom_1.html to >

Re: [qooxdoo-devel] How to access DemoBrowser instance inside Atom_1.html?

2008-04-01 Thread thron7
'parent' was not such a bad idea, but you have to get at actual object instances, not the class objects. here is a general way of accessing live objects in the "parent" application: parent.qx.core.Init.getInstance().getApplication().viewer (because if you look at the code, the DemoBrowser insta

Re: [qooxdoo-devel] Netscape Navigator 4.08 support

2008-04-01 Thread thron7
Hugh Gibson wrote: >>> Oh, but that's an April Fool: >>> http://news.mylocoworld.com/2008/03/31/google-gmail-custom-time/ >>> >>> >>> >> But, wait ... I thought ... what's then with ... :-\ >> > > Oh look, it's not morning anymore - I must confess that we have no > intention of using

[qooxdoo-devel] How to access DemoBrowser instance inside Atom_1.html?

2008-04-01 Thread kanugula
Hi, My application is built on Demo Browser. For simplicity, I am using Demo Browser terminalogy. I want to pass the Demo Browser Tree node name "example" to Atom_1.html to enable/disable buttons based on Node Name and Role. For that, I defined a property called "selectedNodeName" inside DemoBro

Re: [qooxdoo-devel] Netscape Navigator 4.08 support

2008-04-01 Thread Hugh Gibson
> > Oh, but that's an April Fool: > > http://news.mylocoworld.com/2008/03/31/google-gmail-custom-time/ > > > > > But, wait ... I thought ... what's then with ... :-\ Oh look, it's not morning anymore - I must confess that we have no intention of using a DOS browser, so you can rest easy, Sebast

[qooxdoo-devel] Modal windows stop working on logging out

2008-04-01 Thread Raul Gutierrez S.
Hi list, I have a "Logout" button on my app.. What I do when the user wants to log out is: qx.ui.core.ClientDocument.getInstance().removeAll(); and then I call my "Login" window again.. When the user logs in for the 2nd time my windows stop behaving modal (even though the code keeps telling the

Re: [qooxdoo-devel] Netscape Navigator 4.08 support

2008-04-01 Thread thron7
Hugh Gibson wrote: >> It's called 'scheduled publishing' and is sort of the inverse >> operation to Gmail's "Custom Time" >> http://mail.google.com/mail/help/customtime/index.html ;-) >> > > Oh, but that's an April Fool: > http://news.mylocoworld.com/2008/03/31/google-gmail-custom-time/ > >

Re: [qooxdoo-devel] Probelm in setModal(true) of qooxdoo window if browser is enabled with scrollbars

2008-04-01 Thread Raul Gutierrez S.
Chandras, On Thu, 2007-12-27 at 10:46 +0530, Chandrasekhar A wrote: > Hi All, > > I got a problem with setModal(true) function in > qx.ui.window.Window object. > > When setModal(true) is given to one window other components should not > be accessible. > > But it is working correctly, if th

Re: [qooxdoo-devel] 0.8 API for widget bounds and parent/child relation

2008-04-01 Thread Andreas Ecker
Hi Jim and others, let me add a few remarks so that people don't get confused about layout managers. Of course, qooxdoo allows you to position widgets with absolute coordinates. Nothing's really gonna change here for 0.8. For absolute positioning there has always been a layout manager, either imp

Re: [qooxdoo-devel] 0.8 API for widget bounds and parent/child relation

2008-04-01 Thread Fabian Jakobs
Jim Hunter schrieb: > I guess you think I want an application that simply looks like 'a' > Windows application, no, I need it to look exactly (translated means > the exact same control placement, size, etc) as our current Windows > application. With the current .7.x version of qooxdoo, I can eas

Re: [qooxdoo-devel] Netscape Navigator 4.08 support

2008-04-01 Thread Fabian Jakobs
thron7 schrieb: >> PS: I'm also impressed that Fabian was working to the middle of the night: >> the date tag on the article was: "April 1, 2008 12:00 am" >> >> > It's called 'scheduled publishing' and is sort of the inverse operation > to Gmail's "Custom Time" > http://mail.google.com/ma

Re: [qooxdoo-devel] Netscape Navigator 4.08 support

2008-04-01 Thread Hugh Gibson
> It's called 'scheduled publishing' and is sort of the inverse > operation to Gmail's "Custom Time" > http://mail.google.com/mail/help/customtime/index.html ;-) Oh, but that's an April Fool: http://news.mylocoworld.com/2008/03/31/google-gmail-custom-time/ Hugh

Re: [qooxdoo-devel] Netscape Navigator 4.08 support

2008-04-01 Thread Hugh Gibson
> please have a look here: > http://browsers.evolt.org/?navigator/ > > There you can download your copy. Actually, having done some more research it appears that the figure you quoted for NN market penetration refers to later versions of the browser as well. So it's probably not worth my time car

Re: [qooxdoo-devel] Netscape Navigator 4.08 support

2008-04-01 Thread thron7
> PS: I'm also impressed that Fabian was working to the middle of the night: > the date tag on the article was: "April 1, 2008 12:00 am" > It's called 'scheduled publishing' and is sort of the inverse operation to Gmail's "Custom Time" http://mail.google.com/mail/help/customtime/index.html ;-

Re: [qooxdoo-devel] How to allow numbers only on Text Field

2008-04-01 Thread Peter Schneider
Hi, I use the following code to archive a "numeric-only" input: - // Check for "numeric-only" inputs var _check = function(s) { var nums = s.match( /\d+/g ); if (nums) { return nums.join(""); } return ""; }; // A "nume

Re: [qooxdoo-devel] Focus management

2008-04-01 Thread Andreas Ecker
Hi Hugh! > I see that work is being done in 0.8 on focus. Is the tab key behaviour > for tab widget to be rationalised? In other words, it never cycles > through the labels on the tabs. > > If we had: > > Edit1 [ ] > > |Tab1| [Tab2] [Tab3] > + > > Edit2 [

Re: [qooxdoo-devel] Netscape Navigator 4.08 support

2008-04-01 Thread Sebastian Werner
Hugh, please have a look here: http://browsers.evolt.org/?navigator/ There you can download your copy. Sebastian Hugh Gibson schrieb: > Hi, > > I saw that you're supporting NN 4.08 > ( http://news.qooxdoo.org/qooxdoo-08-to-support-netscape-4 posted this > morning ) > and wanted to do some te