Forum Discussion
_anomDiebolt_
8 years agoQrew Elite
You can also do it with IOL without any additional data fields and keep the original commas and justification. You of course have to use and IOL field but you should have this in every application so you can immediately implement new script solutions without delay.
Assuming the label is "number" this script finds the cell with the label, selects the next cell (which contains the value) and wraps in in bold tags.
Assuming the label is "number" this script finds the cell with the label, selects the next cell (which contains the value) and wraps in in bold tags.
$("td.label:has(label.fieldLabel b:contains(number))").next("td").wrapInner("<b></b>");Reference the unmodified HTML:
<tr class="formRow ">and the modified HTML:
<td id="tdl_0" class="label lc">
<label class="fieldLabel">
<b>number</b>
</label>
</td>
<td id="tdf_0" class="cell cc nowrap" colspan="100">5,029.36</td>
</tr>
<tr class="formRow ">
<td id="tdl_0" class="label lc">
<label class="fieldLabel">
<b>number</b>
</label>
</td>
<td id="tdf_0" class="cell cc nowrap" colspan="100"><b>5,029.36</b></td>
</tr>
_anomDiebolt_
8 years agoQrew Elite
It is a workaround to inject JavaScript into your page to fix any problem. There are hundreds of solutions that use it in the Pastie Database.
Start here:
How Do I Setup the Image Onload Technique (IOL)?
https://community.quickbase.com/quickbase/topics/how-do-i-setup-the-image-onload-technique-iol
Pastie Database
https://haversineconsulting.quickbase.com/db/bgcwm2m3z
Start here:
How Do I Setup the Image Onload Technique (IOL)?
https://community.quickbase.com/quickbase/topics/how-do-i-setup-the-image-onload-technique-iol
Pastie Database
https://haversineconsulting.quickbase.com/db/bgcwm2m3z