I am building a widget with UiBinder, and I need to have it enclosed in a <span />
but UiBinder only gives me <div />
. E.g. <g:HTMLPanel />
=> <div />
. HorizonPanel, FlowPanel, VerticalPanel also give out only <div />
.
Does any one know a solution?
With regards to the answer above by Robert (sorry I can't figure out how to comment that directly)
This won't work out of the box, as widgets can't be placed inside plain HTML (the compiler will give you "error: found widget in html context"). But there's a simple workaround:
One other useful thing to mention is InlineHTML and InlineLabel widgets capable of holding arbitary html or plain text respectively in a <span>
Try this:
You can keep using a
<div>
but just adddisplay: inline
to its CSS, which will make it display as though it were a<span>
.Edit: fixed place at the end where I said 'div' but meant 'span'.