gwt - How can I make my uibinder accept html content not just widgets as content/children -


i have uibinder call use in uibinders. accepts widgets children not directly html. question how make uibinders accept html content g:html or g:htmlpanel not wigets?

now: <my:a>     <g:html><a href='#'>click me</a></g:html> </my:a>  want: <my:a>     <a href='#'>click me</a> </my:a> 

you need implement hashtml interface hassafehtml interface in widget.


Popular posts from this blog

debugging - Reference - What does this error mean in PHP? -

c++ - What is the reason for not being able to deduce array size from initializer-string in member variable? -