I use GWTbootstrap3 in my project. I want to show a bootstrap badge next to my headline:
Version 1 (works, but shows badget under the headline, which i don't want)
<h1 ui:field="title" class="{style.title} title-width">
</h1>
<b:Badge ui:field="date"/>
Version 2 (does not work, i.e. the headline shows but the span for the badge is NOT there !!)
According to https://www.w3schools.com/bootstrap/bootstrap_badges_labels.asp ... where it says "[...]badges can be used inside other elements [...]" )
<h1 ui:field="title" class="{style.title} title-width">
<b:Badge ui:field="date"/>
</h1>
Actually when I inspect the html within Chrome the span element is NOT THERE at all???
Any idea?
Best regards Hannes