GWT has Element and Node class which are wrappers for low level DOM
elements/nodes.
do you know How I can convert SafeHtml to Element or Node ?
for example using the code below, I create a SafeHtml.
SafeHtml html =
SafeHtmlUtils.fromSafeConstant("<tr><td>XXX</td><td>YYY</td></tr>");
but I could not find a way to create a Node or Element from this SafeHtml.
I could manipulate existing Node/Elements but not create one.
I want to add a new row to an existing table using Element/Node class.
therefore I need to create a new row, not manipulate an existing row.
do you have any idea how this can be possible ?
Thank You
--
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.