var root = new qx.html.Root();
      var file = new qx.html.Input("file");
      root.useElement(file);

Nothing happens

/      var file = new qx.html.Input("file");
      this.getRoot().add(file);/

or 

/      var file = qx.bom.Input.create("file");
      this.getRoot().add(file);/

or

/      var win = new qx.ui.window.Window();
      win.open();
      var file = qx.bom.Input.create("file");
      this.getRoot().add(win);
      win.add(file);/

I get this error: fL.getLayoutParent is not a function

I tried for hours but get no result.

I need a truth example for a standalone application, sorry, not for a native
application






--
View this message in context: 
http://qooxdoo.678.n2.nabble.com/Example-for-qx-bom-input-or-qx-html-Input-tp7587502p7587510.html
Sent from the qooxdoo mailing list archive at Nabble.com.

------------------------------------------------------------------------------
_______________________________________________
qooxdoo-devel mailing list
qooxdoo-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to