Code based on qooxdoo 1.6:
----
      var centerLayout = new qx.ui.layout.HBox();
      centerLayout.setAlignX("center");
      var centerAlignedContainer = new
qx.ui.container.Composite(centerLayout);
      this.getRoot().add(centerAlignedContainer, { edge : 0 });

      var layout = new qx.ui.layout.Grid(0, 0);
      var container = new qx.ui.container.Composite(layout);
      centerAlignedContainer.add(container);

      var outputArea = new qx.ui.form.TextArea();
      var tabView = new qx.ui.tabview.TabView();

      var page = new qx.ui.tabview.Page("test");
      page.setLayout(new qx.ui.layout.VBox());
      tabView.add(page);

      container.add(tabView, {row: 0, column: 0});
      container.add(outputArea, {row: 1, column: 0});
----

The bug is clearly shown on the screenshot below. I have added a line to
show the issue more evidently.
The issue happens only in IE.

http://qooxdoo.678.n2.nabble.com/file/n7281957/bug_ie_vs_firefox.png 

Any ideas will be appreciated.


--
View this message in context: 
http://qooxdoo.678.n2.nabble.com/IE-issue-again-textArea-width-is-incorrect-tp7281957p7281957.html
Sent from the qooxdoo mailing list archive at Nabble.com.

------------------------------------------------------------------------------
Try before you buy = See our experts in action!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-dev2
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to