I have just copy-pasted example from qooxdoo 1.6:

---
      var inputControl = new qx.ui.form.TextField("Test");

      // Document is the application root
      var doc = this.getRoot();

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

I would like to set both background color of TextField and the page
background color to white. So, I have added the changes into color.js:

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

  colors :
  {
    "background-application" : "#FFFFFF",
    "input-start" : "#FFFFFF",
    
    "input-end" : "#FFFFFF"
  }
});
---

The result is the following:
1) background of page changed to white - works fine in both firefox and IE. 
2) textField background color doesn't work in IE. The picture below shows
the issue. Look likes "input-start"/"input-end" doesn't work in IE.

Any help will be appreciated.
P.S. The same issue happens If I use qx.ui.form.TextArea.

http://qooxdoo.678.n2.nabble.com/file/n7251867/firefox_10_vs_IE_9_issue2.jpg 

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