Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is it possible to add a specific style to a gwt element??

e.g. if I have a button

  Button X= new Button("X");

now if i want the button to be italic

can i do something like that

X.addStyleName("font-style:italic");

share|improve this question

2 Answers

up vote 2 down vote accepted

The styleName is only valid for an style defined in your CSS file. Check the answer from hilal for more details about it.

If you only need to specify an specific value, you can do something like

DOM.setStyleAttribute(myButton.getElement(), "fontStyle", "italic");

keep in mind that then you're hard coding these value, and any change in the style will require to recompile your code.

share|improve this answer

No. You can't

From Javadoc :

All UIObject objects can be styled using CSS. Style names that are specified programmatically in Java source are implicitly associated with CSS style rules. In terms of HTML and CSS, a GWT style name is the element's CSS "class".

Here is the link

share|improve this answer
OK, thanks..... – Noor Dec 25 '10 at 12:13

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.