Hi David,

On 23/05/07, dperez <[EMAIL PROTECTED]> wrote:
>
> Hi Nick,
>
> Does http://demo.qooxdoo.org/0.7-beta1/sample/html/example/ComboBoxEx_1.html
> work for you?

It's true that I see a scrollbar in the online demo. I'll have a look
what's different.

>
> I can see no destructor errors.  Now destructor is much simpler, and fewer
> errors can have.

My simple little script below doesn't appear to demonstrate it, so I'm
going to have to drill down in my application to find out what factor
is involved. I'll update you.

>
> Tab order works for me, but the combo in that page is later in tab order
> than the buttons on its right.

This was the test script that I've come up with, and I can see that
during tabbing the focus jumps early to the combo contents, and then
later to the drop-down at the correct time. I probably need two
setTabIndexs.


var w;
var ti = 1;

var layout = new qx.ui.layout.VerticalBoxLayout ();
layout.setDimension ('auto', 'auto');

w = new qx.ui.form.TextField ();
w.setTabIndex (ti++);
layout.add (w);

w = new qx.ui.form.TextField ();
w.setTabIndex (ti++);
layout.add (w);

// Create another layout to test destruction
var layout2 = new qx.ui.layout.VerticalBoxLayout ();
layout2.setDimension ('auto', 'auto');
layout.add (layout2);

var combo = w = new qx.ui.form.ComboBoxEx ();
w.setTabIndex (ti++);
w.setSelection([ [ '1', 'One'],
                 [ '2', 'Two' ],
                 [ '3', 'Three' ],
                 [ '4', 'Four' ] ]);
w.setValue ('1');
layout2.add(w);


w = new qx.ui.form.TextField ();
w.setTabIndex (ti++);
layout.add (w);

layout.addToDocument ();

// I thought that these lines would cause a destruction problem, but they didn't
//layout.remove (layout2);
//layout2.dispose ()

-------------------------------------------------------------------------
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