Hi,
I'm not sure if this is the correct forum to post this question but it was the best I found
I'm using an UltraFormattedTextEditor to display several entries that should be simply formatted. Each entry consists of a header that I want to display in bold letters and a text that I want to display in regular letters. I formatted it like follows:
<p style='font-weight:bold;'>Header</p><p style='font-weight:normal;'>Text</p>
This looks nearly as I wanted but there is one blank line between the header and the text where I could not find a reasonable way to remove this line or set the numbers of pixels. Is there somewhere an overview of the tags that can be used for formatting of the UltraFormattedTextEditor?
Kind regards, Wolfgang
Try this:
<span style="font-weight:bold;">Header</span><br/>Text
Note that I figured this out by going into the designer for the Value property and just typing in the text (with the line break) and then selecting the "Header" text and clicking on the Bold button.
I had the same problem.
But the <br/> add a extra blank line on every two <br/> !!!!
So it's impossible to make a list of word in a cell.
Example :
<span style="font-weight:bold;">Header</span><br/>Text : result OK
<span style="font-weight:bold;">Header</span><br/>Text<br/>Text2 : result with a extra blank line between Header and Text.
<span style="font-weight:bold;">Header</span><br/>Text<br/>Text2<br/>Text3 : result with another blank line between Text and Text2
etc ......
How i can remove thos blank line.
I tried this out on three UltraFormattedLinkLabels just as you have it here and it looks fine to me. I don't see any extra space.
Hi ,
Oh , i forgot to said that the bug is only when we exporting the grid with ultraGridDocumentExporter.
I submit a incident ref: UWG30349.
Someone on your team reproduced it and he should submitting to the dev team.
Thanks