We have an existing user interface built with UIBinder, whose ui.xml file contains the following hierarchy:
<ui:UiBinder> <div> Multiple <span> or <a> separated by verbatim HTML (like | separators).
I need to replace one of the anchors with a list.
Is there a way to make this transition without replacing the div with an HTMLPanel and change all the bindings to something else?
If I try to use gwt: ValueListBox or gwt: ListBox there, I get an error that I cannot mix them. I also cannot have multiple children (e.g. div and HTMLPanel) under UIBinder.
If my only option is to convert everything to widgets, what are the appropriate conversions for and elements?
source share