I have a problem with Table and ComboBox widgets (i found only 2 for now)
using IE7 in inline qooxdoo apps.
Table: when i want select an element of the widget i can't do it, i must to
do click 2 rows below which I would choose.
ComboBox: When i do click to select a element, the list option i recive
separate displays from de principal widget.

this does not happen with Standalone application, this only happen with IE7,
with Firefox work Inline and Standalone.
here i send you a little example with the problem in IE7 on inline mode.

(sorry for my english, my primary language is spanish)

qx.Class.define("example.Application",
{
    extend : qx.application.Inline,
    members :
    {
        main : function()
        {
            this.base(arguments);

            var doc = this.getRoot();

            /************ WIDGET TABLE ***************/
            var model = new qx.ui.table.model.Simple();
            model.setColumns(["Col One", "Col Two"]);
            model.setData([["1", "2"], ["3", "4"]]);

            var table = new qx.ui.table.Table(model);
            table.setWidth(205);
            table.setHeight(200);

            doc.add(table, {left:0, top:0});

            /*********** WIDGET COMBOBOX ************/
            var combobox = new qx.ui.form.ComboBox();
            combobox.add(new qx.ui.form.ListItem("One", "", "1"));
            combobox.add(new qx.ui.form.ListItem("Two", "", "2"));

            doc.add(combobox, {left:250, top:0});
        }
    }
});
------------------------------------------------------------------------------
SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas, Nevada.
The future of the web can't happen without you.  Join us at MIX09 to help
pave the way to the Next Web now. Learn more and register at
http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to