I need to display raw HTML text inside the textarea without parsing
it.
Something like below:

    <textarea>
      <a href="someurl">Click Here</a>
    </textarea>
Where I should see anchor tag and all the raw HTML tags inside the
textarea.
Normally you do following:

    <textarea>
      &lt;a href=&quot;someurl&quot;&gt;Click Here&lt;/a&gt;
    </textarea>

Which will display the unparsed raw anchor in side the textarea.
But in GWT in UiBinder `"&lt;a href=&quot;someurl&quot;&gt;Click
Here&lt;/a&gt;"` never
gets converted to `<a href="someurl">Click Here</a>` inside the
textarea.

Is there any workaround for this?

Thanks!

-- 
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.

Reply via email to