ids
01-06-07, 04:37 AM
Using this code:
<MvASSIGN NAME="l.link" VALUE="{l.sessionurl$'Screen='$g.Screen $'&'$'Store_Code='$g.Store_Code$'&'$'month='$g.month$'&day='$padl(l.this_day,2,'0')$'&year='$g.year}">
<MvASSIGN NAME="l.this_day_format" VALUE="{'<a href ="'$l.link$'"><font color="white"><b>'$l.this_day$'</b></font></a>'}">
When I place the output, the html looks something like:
<td bgcolor="" valign="bottom" width="2" height="1">
<a href = "http://127.0.0.1:8000/Merchant2/merchant.mv?Screen=OSEL&Store_Code=mystore&month=1&day=02&year=2007">2</a>
</td>
The problem is the Please correct me, but I've concluded that Empressa (only Mia so far) is inserting this after the link. It's causing alignment issues in cells. like in the rendered html, the 2 doesn't actually appear with bottom alignment, it is, but the is pushing the text in cell up. Using a text editor, If you manually remove the alignment is perfect.
If I use in the function:
STANDARDOUTPUTLEVEL="html,compresswhitespace"> it doesn't appear. That would be fine if there weren't text in the actual document. So, this is my only option for the app:
STANDARDOUTPUTLEVEL="text,html,compresswhitespace">
I need to precisely control formatting in the cell. Is there any way to prevent the extra from being added to the rendered html?
BTW: I have tried using CSS but that hasn't helped so far. I've only tried with formatting attributes.
TIA
Scott
<MvASSIGN NAME="l.link" VALUE="{l.sessionurl$'Screen='$g.Screen $'&'$'Store_Code='$g.Store_Code$'&'$'month='$g.month$'&day='$padl(l.this_day,2,'0')$'&year='$g.year}">
<MvASSIGN NAME="l.this_day_format" VALUE="{'<a href ="'$l.link$'"><font color="white"><b>'$l.this_day$'</b></font></a>'}">
When I place the output, the html looks something like:
<td bgcolor="" valign="bottom" width="2" height="1">
<a href = "http://127.0.0.1:8000/Merchant2/merchant.mv?Screen=OSEL&Store_Code=mystore&month=1&day=02&year=2007">2</a>
</td>
The problem is the Please correct me, but I've concluded that Empressa (only Mia so far) is inserting this after the link. It's causing alignment issues in cells. like in the rendered html, the 2 doesn't actually appear with bottom alignment, it is, but the is pushing the text in cell up. Using a text editor, If you manually remove the alignment is perfect.
If I use in the function:
STANDARDOUTPUTLEVEL="html,compresswhitespace"> it doesn't appear. That would be fine if there weren't text in the actual document. So, this is my only option for the app:
STANDARDOUTPUTLEVEL="text,html,compresswhitespace">
I need to precisely control formatting in the cell. Is there any way to prevent the extra from being added to the rendered html?
BTW: I have tried using CSS but that hasn't helped so far. I've only tried with formatting attributes.
TIA
Scott