Hi,
This:
<js:HContainer>
<js:Label text=“Hello, ">
<js:style>
<js:SimpleCSSStyles fontWeight="bold" />
</js:style>
</js:Label>
<js:Label text=“world">
<js:style>
<js:SimpleCSSStyles />
</js:style>
</js:Label>
</js:HContainer>
Gives this: (removing the space)
Hello,world
Rather than the expected:
Hello, world
In this case you could of course do something like this (although it's not
quite the same):
<js:Label html=“<b>Login</b>, to access your management tools” />
But there are other cases where this is not so easy to solve and spaces are
needed on either side.
Is there any reason text labels are trimmed? Is this a bug?
Thanks,
Justin