I have copy-pasted example from demobrowser delivered with qooxdo 1.6:

---
      var tabView = new qx.ui.tabview.TabView();
      tabView.setWidth(500);

      ////////////////// TEST PAGE 1 ////////////////////
      var page1 = new qx.ui.tabview.Page("Layout");
      page1.setLayout(new qx.ui.layout.VBox());
      page1.add(new qx.ui.basic.Label("Layout-Settings"));
      tabView.add(page1);

      ////////////////// TEST PAGE 2 ////////////////////
      var page2 = new qx.ui.tabview.Page("Notes");
      page2.setLayout(new qx.ui.layout.VBox());
      page2.add(new qx.ui.basic.Label("Notes..."));
      tabView.add(page2);

      // Add button to document at fixed coordinates
      this.getRoot().add(tabView, {left: 100, top: 50});
---

I would like to have inactive tabview buttons with white color. So, I have
added the changes into color.js:

qx.Theme.define("testtabview.theme.Color",
{
  extend : qx.theme.modern.Color,

  colors :
  {
    "tabview-inactive-start" : "#FFFFFF",
    
    "tabview-inactive-end" : "#FFFFFF"
  }
});

In firework it works fine, in IE9 it doesn't work. The picture below clearly
show the issue. Any ideas will be appreciated. 

http://qooxdoo.678.n2.nabble.com/file/n7251805/firefox_10_vs_IE_9.jpg 



--
View this message in context: 
http://qooxdoo.678.n2.nabble.com/Theme-changes-for-tabview-doesn-t-work-in-IE-tp7251805p7251805.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