I realized there is no GWT/UiBinder equivalent for html list <ul> <li>
how can I improve my UiBinder as you can see below
<g:HTMLPanel>
<ul>
<li> item #1 </li>
<li> item#2 </li>
<li> item#3 </li>
</ul>
<g:HTMLPanel>
I am worried that this might not be the correct way of doing things in GWT
UiBinder.
and that I cannot acces UL and LI elements in Java code. for example to
programmatically add items to the list.
also, I wanted to make an image hyperlink, like an icon that when you click
you go to a place.
at the moment I am using this:
<a href="#home/settings">Settings <g:Image resource="{res.homeIcon}" /></a>
I feel that what I am doing are just workarounds and believe there are
better ways of doing these.
I would be very grateful if you can provide some suggestion.
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.