|
View:
New views
4 Messages
—
Rating Filter:
Alert me
|
|
|
Problem with TextField and text-transform CSS propertyI'm trying to use the text-transform CSS property with the TextField component, but it doesn't works.
Is there any workaround? Thanks, Felipe |
|
|
Re: Problem with TextField and text-transform CSS propertyTheoretically it should work, although text-transform has never been
tested. Have you verified the the 'text-verified' is presented in final input DOM element ( i.e. using FireBug CSS inspector?). Felipe Jaekel wrote: > I'm trying to use the text-transform CSS property with the TextField > component, but it doesn't works. > > Is there any workaround? > > Thanks, > Felipe --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscribe@... For additional commands, e-mail: users-help@... |
|
|
Re: Problem with TextField and text-transform CSS propertyI didn't figured out where to look at Firebug. Looking at the rendered code, I noticed that the text-transform property is applied to the span tag instead of the input tag.
<td> 2008/6/30 Dmitry Kushner <Dmitry.Kushner@...>: Theoretically it should work, although text-transform has never been tested. Have you verified the the 'text-verified' is presented in final input DOM element ( i.e. using FireBug CSS inspector?). |
|
|
Re: Problem with TextField and text-transform CSS property
By design, style property as the JSF-attribute does not get pushed to
the underlying elements - it only applies to the top-most dom element.
If you need more control, you have to do it by yourself - retrieve the DOM element by known id (d="form1:tfUsuario_field") and set a style on it. Felipe Jaekel wrote: I didn't figured out where to look at Firebug. Looking at the rendered code, I noticed that the text-transform property is applied to the span tag instead of the input tag.--------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscribe@... For additional commands, e-mail: users-help@... |
| Free Forum Powered by Nabble | Forum Help |