One solution is to clone an already existing node and then manipulating it.

1- clone an already existing node
eg. Node node = parent.cloneNode(false)

2- cast this Node to Element
eg. Element element = Element.as(node)

3- manipulate this element
eg. element.setInnerHTML(html.asString) // using the SafeHtml you provided 
in your post

Ryan

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