Working on a very simple dropdown box but this time with a "special"
character in it: "<". How hard could it be right?

<g:ListBox>
  <g:item><ui:msg>&#60;4</ui:msg></g:item>
</g:ListBox>

But this results in the following:

<select>
 <option>&lt;4</option>
</select>

Which on the browser shows as:

&lt;4

Being smarter then that and putting in &lt; instead leaves it untranslated
so it seems that the '<' and for that matter the '>' sign cannot be used.
Though a &qout; and a &#39; (" and ' respectively) are show correctly so it
does work in some cases and it certainly is not something that should never
work... Has anyone else run into this and if so do you have a solution to
this problem?

By the way I'm using GWT 2.3

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.

Reply via email to