On Thursday, April 7, 2011 2:13:30 PM UTC+2, Stephan T wrote: > > Ok, I see. The problem I have right now is that I need to style all > textboxes that are disabled but I can't find any selector that will > work with this markup. > > I can't use this one: > input.gwt-TextBox[disabled='disabled'] > > and this one doesn't work in IE (tested in IE9): > input.gwt-TextBox[disabled='']
Just use .gwt-TextBox[disabled]. It's a "boolean attribute", what matters is whether it's there or not, not what its value is. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
