Discussions
Categories
Groups
Community Home
Categories
INTERNAL ENABLEMENT
POPULAR
THRUST SERVICES & TOOLS
CLOUD EDITIONS
Quick Links
MY LINKS
HELPFUL TIPS
Back to website
Home
Intelligence (Analytics)
Text formatting in a field with database content
fastcars
I want to emit a list of fields that in HTML would appear as <br />
<br />
<br />
<strong class='bbc'><span class='bbc_underline'>Name1: </span></strong>dataSetRow["somevalue"]<br />
<br />
<br />
This means that the prompt would be bold under lined followed by a fields from an dataset in normal text.<br />
<br />
There would 5-10 of these fields in a grid down the LHS of the page.<br />
The prompts are of variable size, and I need a single space between the prompt text and the data base value that would be in non bold, non underlined text.<br />
<br />
I have tried a text field and dont appear to be able to access a dataSetRow field from these fields, even using <value-of>dataDetRow["name"]</value-of><br />
<br />
The data field appears to give me no control over the text attributes (bold underline)<br />
<br />
I cannot add a label and a data field to the grid call and have them appear on the same line to achieve what I need.<br />
<br />
How do I do this ?, it a *very* simple requirement.
Find more posts tagged with
Comments
mwilliams
Hi fastcars,<br />
<br />
Try this:<br />
<br />
<strong class='bbc'><span class='bbc_underline'>Name1:</span></strong> <VALUE-OF>row["fieldName"]</VALUE-OF><br />
<br />
Be sure that the text element is of type HTML in the drop down and that the text box is bound to the appropriate dataSet.
fastcars
Thanks that worked well.
mwilliams
Glad to help, let us know whenever you have questions.