In qooxdoo 0.6.6, I have the following code:

   var usernameLabel = new qx.ui.basic.Label("User name");
   usernameLabel.set({ left: 10, top: 50 });

   this._fields.userid = new qx.ui.form.TextField();
   this._fields.userid.set({ tabIndex: 1, left: 80, top: 50, width: 120, 
height: 20 });

   this.add(usernameLabel, this._fields.userid);

   var passwordLabel = new qx.ui.basic.Label("Password");
   passwordLabel.set({ left: 10, top: 75 });

   this._fields.password = new qx.ui.form.PasswordField();
   this._fields.password.set({ tabIndex: 2, left: 80, top: 75, width: 
120, height: 20 });

   this._buttons.login = new qx.ui.form.Button("Log in");
   this._buttons.login.set({ tabIndex: 3, left: 220, top: 75, width: 80, 
height: 20 });
   this._buttons.login.addEventListener("execute", 
this._onLoginButtonExecute, this);

   this.add(passwordLabel, this._fields.password, this._buttons.login);

This is located within a qx.ui.layout.CanvasLayout within a 
qx.ui.window.Window.  What's happening is that, intermittently, the tab 
key does not advance from the password field to the login button. 
Instead, it selects the hidden password text (the asterisks).  This 
happens in both ffox 2.0 and IE 7.

I can't seem to work out what's causing this.

-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to