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 have two different font-colors in a gwt-label?

Example:

Label titleLabel = new Label(ticket.getTicketType().getName()+" - <<"+art+">>");

The second part of the label should be red.

share|improve this question

1 Answer

up vote 5 down vote accepted

Use an HTML widget:

titleLabel = new HTML(SafeHtmlUtils.htmlEscape(ticket.getTicketType().getName())
    + " - <span style='color: red'>&lt;&lt;"
    + SafeHtmlUtils.htmlEscape(art)
    + "&gt;&gt;</span>");

To make it slightly more readable, I'd use a SafeHtmlTemplates (and as a bonus, it'll check your HTML syntax, and automatically htmlEscape your strings so you don't risk to miss one, so it's safer):

interface Template extends SafeHtmlTemplates {
   @Template("{0} - <span style='color: red'>&lt;&lt;{1}&gt;&gt;</span>")
   SafeHtml title(String ticketTypeName, String art);
}
static final Template TEMPLATE = GWT.create(Template.class)

...

titleLabel = new HTML(TEMPLATE.title(ticket.getTicketType().getName(), art));

I'd also replace the style='color: red' with a class='{2}' and a CssResource, but that's just a bonus, and mostly a detail.

share|improve this answer

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.