Hi all,
I've been trying out qooxdoo 0.6.6 and I ran into a couple issues that
look like bugs. Can anyone help me out here?
I created a Window and added a listview inside it. Here's the simplest
code I can reproduce the issue on:
------8<-----
var docRoot=qx.ui.core.ClientDocument.getInstance();
var w1=new qx.ui.window.Window("Hello");
w1.setSpace(20,150,48,250);
docRoot.add(w1);
var data = [];
var columns =
{
name : { label : "One", width : 100, type : "text" }
};
var list=new qx.ui.listview.ListView(data, columns);
list.set({ left: 2, top: 2, right: 2, bottom: 4 });
w1.add(list);
w1.open();
------8<-----
Does that look correct? When running it, the first issue is already
visible: minimize, maximize and close buttons are cut-off. Now try to
resize the window grabbing the bottom handle and making it taller. It
works, but I get a long chain of exceptions on the event log and then
resizing won't respond anymore.
Here's the full qooxdoo log from such session:
002531 DEBUG: qx.core.Init[3]: qooxdoo 0.6.6
002531 DEBUG: qx.core.Init[3]: loaded 305 classes
002531 DEBUG: qx.core.Init[3]: client: gecko-1.9/win/en
002531 INFO: qx.component.init.InterfaceInitComponent[30]: initialize
runtime: 0ms
002578 INFO: qx.component.init.InterfaceInitComponent[30]: main runtime: 31ms
002578 DEBUG: qx.component.init.InterfaceInitComponent[30]: preloading
visible images...
003250 DEBUG: qx.component.init.InterfaceInitComponent[30]: preloading complete
003297 INFO: qx.component.init.InterfaceInitComponent[30]: finalize
runtime: 63ms
003297 DEBUG: qx.component.init.InterfaceInitComponent[30]: preloading
hidden images...
003312 DEBUG: qx.component.init.InterfaceInitComponent[30]: preloading complete
006484 ERROR: qx.ui.listview.ListViewPane[160]: Could not apply
padding to child [object qx.ui.listview.ContentCellText]: TypeError -
this._style has no properties
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/ui/core/Widget.js:2265
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/ui/basic/Terminator.js:49
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/ui/core/Parent.js:977
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/renderer/layout/LayoutImpl.js:388
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/ui/core/Parent.js:922
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/ui/core/Widget.js:1011
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/ui/core/Widget.js:736
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/event/handler/EventHandler.js:877
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/event/handler/EventHandler.js:685
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/event/handler/EventHandler.js:50
006484 ERROR: qx.ui.listview.ListViewPane[160]: Could not layout child
[object qx.ui.listview.ContentCellText] through layout handler:
TypeError - this._style has no properties
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/ui/core/Widget.js:2316
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/renderer/layout/GridLayoutImpl.js:248
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/renderer/layout/GridLayoutImpl.js:233
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/ui/core/Parent.js:993
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/renderer/layout/LayoutImpl.js:388
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/ui/core/Parent.js:922
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/ui/core/Widget.js:1011
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/ui/core/Widget.js:736
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/event/handler/EventHandler.js:877
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/event/handler/EventHandler.js:685
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/event/handler/EventHandler.js:50
006500 ERROR: qx.ui.listview.ListViewPane[160]: Could not apply
padding to child [object qx.ui.listview.ContentCellText]: TypeError -
this._style has no properties
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/ui/core/Widget.js:2265
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/ui/basic/Terminator.js:49
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/ui/core/Parent.js:977
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/renderer/layout/LayoutImpl.js:388
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/ui/core/Parent.js:922
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/ui/core/Widget.js:1011
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/ui/core/Widget.js:736
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/event/handler/EventHandler.js:877
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/event/handler/EventHandler.js:685
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/event/handler/EventHandler.js:50
006500 ERROR: qx.ui.listview.ListViewPane[160]: Could not layout child
[object qx.ui.listview.ContentCellText] through layout handler:
TypeError - this._style has no properties
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/ui/core/Widget.js:2316
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/renderer/layout/GridLayoutImpl.js:248
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/renderer/layout/GridLayoutImpl.js:233
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/ui/core/Parent.js:993
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/renderer/layout/LayoutImpl.js:388
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/ui/core/Parent.js:922
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/ui/core/Widget.js:1011
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/ui/core/Widget.js:736
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/event/handler/EventHandler.js:877
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/event/handler/EventHandler.js:685
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/event/handler/EventHandler.js:50
006516 ERROR: qx.ui.listview.ListViewPane[160]: Could not apply
padding to child [object qx.ui.listview.ContentCellText]: TypeError -
this._style has no properties
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/ui/core/Widget.js:2265
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/ui/basic/Terminator.js:49
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/ui/core/Parent.js:977
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/renderer/layout/LayoutImpl.js:388
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/ui/core/Parent.js:922
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/ui/core/Widget.js:1011
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/ui/core/Widget.js:736
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/event/handler/EventHandler.js:877
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/event/handler/EventHandler.js:685
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/event/handler/EventHandler.js:50
006516 ERROR: qx.ui.listview.ListViewPane[160]: Could not layout child
[object qx.ui.listview.ContentCellText] through layout handler:
TypeError - this._style has no properties
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/ui/core/Widget.js:2316
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/renderer/layout/GridLayoutImpl.js:248
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/renderer/layout/GridLayoutImpl.js:233
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/ui/core/Parent.js:993
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/renderer/layout/LayoutImpl.js:388
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/ui/core/Parent.js:922
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/ui/core/Widget.js:1011
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/ui/core/Widget.js:736
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/event/handler/EventHandler.js:877
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/event/handler/EventHandler.js:685
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/event/handler/EventHandler.js:50
006531 ERROR: qx.ui.listview.ListViewPane[160]: Could not apply
padding to child [object qx.ui.listview.ContentCellText]: TypeError -
this._style has no properties
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/ui/core/Widget.js:2265
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/ui/basic/Terminator.js:49
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/ui/core/Parent.js:977
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/renderer/layout/LayoutImpl.js:388
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/ui/core/Parent.js:922
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/ui/core/Widget.js:1011
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/ui/core/Widget.js:736
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/event/handler/EventHandler.js:877
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/event/handler/EventHandler.js:685
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/event/handler/EventHandler.js:50
006547 ERROR: qx.ui.listview.ListViewPane[160]: Could not layout child
[object qx.ui.listview.ContentCellText] through layout handler:
TypeError - this._style has no properties
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/ui/core/Widget.js:2316
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/renderer/layout/GridLayoutImpl.js:248
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/renderer/layout/GridLayoutImpl.js:233
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/ui/core/Parent.js:993
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/renderer/layout/LayoutImpl.js:388
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/ui/core/Parent.js:922
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/ui/core/Widget.js:1011
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/ui/core/Widget.js:736
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/event/handler/EventHandler.js:877
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/event/handler/EventHandler.js:685
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/event/handler/EventHandler.js:50
006547 ERROR: qx.ui.listview.ListViewPane[160]: Could not apply
padding to child [object qx.ui.listview.ContentCellText]: TypeError -
this._style has no properties
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/ui/core/Widget.js:2265
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/ui/basic/Terminator.js:49
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/ui/core/Parent.js:977
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/renderer/layout/LayoutImpl.js:388
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/ui/core/Parent.js:922
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/ui/core/Widget.js:1011
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/ui/core/Widget.js:736
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/event/handler/EventHandler.js:877
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/event/handler/EventHandler.js:685
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/event/handler/EventHandler.js:50
006547 ERROR: qx.ui.listview.ListViewPane[160]: Could not layout child
[object qx.ui.listview.ContentCellText] through layout handler:
TypeError - this._style has no properties
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/ui/core/Widget.js:2316
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/renderer/layout/GridLayoutImpl.js:248
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/renderer/layout/GridLayoutImpl.js:233
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/ui/core/Parent.js:993
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/renderer/layout/LayoutImpl.js:388
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/ui/core/Parent.js:922
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/ui/core/Widget.js:1011
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/ui/core/Widget.js:736
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/event/handler/EventHandler.js:877
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/event/handler/EventHandler.js:685
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/event/handler/EventHandler.js:50
006562 ERROR: qx.ui.listview.ListViewPane[160]: Could not apply
padding to child [object qx.ui.listview.ContentCellText]: TypeError -
this._style has no properties
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/ui/core/Widget.js:2265
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/ui/basic/Terminator.js:49
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/ui/core/Parent.js:977
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/renderer/layout/LayoutImpl.js:388
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/ui/core/Parent.js:922
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/ui/core/Widget.js:1011
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/ui/core/Widget.js:736
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/event/handler/EventHandler.js:877
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/event/handler/EventHandler.js:685
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/event/handler/EventHandler.js:50
006562 ERROR: qx.ui.listview.ListViewPane[160]: Could not layout child
[object qx.ui.listview.ContentCellText] through layout handler:
TypeError - this._style has no properties
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/ui/core/Widget.js:2316
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/renderer/layout/GridLayoutImpl.js:248
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/renderer/layout/GridLayoutImpl.js:233
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/ui/core/Parent.js:993
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/renderer/layout/LayoutImpl.js:388
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/ui/core/Parent.js:922
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/ui/core/Widget.js:1011
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/ui/core/Widget.js:736
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/event/handler/EventHandler.js:877
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/event/handler/EventHandler.js:685
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/event/handler/EventHandler.js:50
006578 ERROR: qx.ui.listview.ListViewPane[160]: Could not apply
padding to child [object qx.ui.listview.ContentCellText]: TypeError -
this._style has no properties
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/ui/core/Widget.js:2265
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/ui/basic/Terminator.js:49
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/ui/core/Parent.js:977
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/renderer/layout/LayoutImpl.js:388
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/ui/core/Parent.js:922
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/ui/core/Widget.js:1011
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/ui/core/Widget.js:736
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/event/handler/EventHandler.js:877
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/event/handler/EventHandler.js:685
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/event/handler/EventHandler.js:50
006578 ERROR: qx.ui.listview.ListViewPane[160]: Could not layout child
[object qx.ui.listview.ContentCellText] through layout handler:
TypeError - this._style has no properties
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/ui/core/Widget.js:2316
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/renderer/layout/GridLayoutImpl.js:248
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/renderer/layout/GridLayoutImpl.js:233
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/ui/core/Parent.js:993
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/renderer/layout/LayoutImpl.js:388
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/ui/core/Parent.js:922
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/ui/core/Widget.js:1011
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/ui/core/Widget.js:736
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/event/handler/EventHandler.js:877
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/event/handler/EventHandler.js:685
at
http://127.0.0.1:8000/qooxdoo-0.6.6-sdk/frontend/framework/source/class/qx/event/handler/EventHandler.js:50
006594 ERROR: qx.event.handler.EventHandler[31]: Failed to handle
mouse event: NS_ERROR_INVALID_POINTER - Component returned failure
code: 0x80004003 (NS_ERROR_INVALID_POINTER)
[nsIDOMDocumentFragment.appendChild]
Tested on IE7 and Minefield/3.0a3pre.
Any ideas?
--
Leonel
-------------------------------------------------------------------------
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