Hi,
with GWT 2.1.1 I've a problem when I set some html text to a cell.
I know that now it used SafeHtml that escape charactes.
I've something like this:
addSortColumn("Html column", new TextCell(), new GetValue<String,
String>() {
public String getValue(String object) {
return
SafeHtmlUtils.fromSafeConstant("<strong>This is a test</
strong>").asString();
}
}, new Property<String>("html", String.class));
but when I display the table I see "<strong>This is a test</strong>"
because the html tags are escaped!!!
With GWT 2.1 my code worked perfectly!!!
Thanks very much!
Best regards
--
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.