Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How do you suppress <DIV> tags for frames?

Status
Not open for further replies.

CSIBEllington

Technical User
Feb 23, 2005
2
US
I have three frames, each with a BrowserScriptingControl that, when taken together, create a table. For a variety of reasons, I need to create the table myself in HTML and not let Actuate do it. What happens is that between each frame, and between each row (the middle frame populates the BSC in the onrow event), I get a DIV tag.

Basically, this is what I'm dealing with. I need a way to remove the three DIV tags that I'm currently getting between my rows. Any ideas?

<!-- [START Custom browser code -->
<TR>
<TD ALIGN='RIGHT'>Marcel Cruz Bonus (20)</TD>
<TD><INPUT TYPE='TEXT' size='10' NAME='BONUSVALUE20' VALUE='4285.71428571429' ONBLUR='BonusCal()' ONCHANGE='BonusCal()'></TD>
<TD><INPUT TYPE='CHECKBOX' NAME='INCVALUE20' ONCLICK='BonusCal()'></TD>
</TR>

<!-- END] Custom browser code -->
</DIV>
</DIV>
<DIV
ID="I19728"
CLASS=C247
STYLE="position:absolute;
left:392.40pt;
top:82.80pt;
height:1.00pt;
width:1.00pt;
background-color:transparent;
clip:rect(0.00pt 1.38pt 1.38pt 0.00pt);
font-size:1.00pt;
">
<DIV
ID="I19728"
CLASS=C247
STYLE="position:absolute;
left:0.00pt;
top:0.00pt;
height:1.00pt;
width:1.00pt;
border-style:solid;
border-width:0.50pt;
font-size:1.00pt;
">
</DIV>
<DIV
ID="I19749"
CLASS=C248
STYLE="position:absolute;
left:9.00pt;
top:9.00pt;
height:15.40pt;
width:267.40pt;
line-height:13.79pt;
font-size:12.00pt;
text-align:left;
overflow:visible;
padding-top:0.00pt;
">
<!-- [START Custom browser code -->
<TR>
<TD ALIGN='RIGHT'>Paul Rosell Bonus (21)</TD>
<TD><INPUT TYPE='TEXT' size='10' NAME='BONUSVALUE21' VALUE='4285.71428571429' ONBLUR='BonusCal()' ONCHANGE='BonusCal()'></TD>
<TD><INPUT TYPE='CHECKBOX' NAME='INCVALUE21' ONCLICK='BonusCal()'></TD>
</TR>

<!-- END] Custom browser code -->
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top