Focal Point Banner


As of December 1, 2020, Focal Point is retired and repurposed as a reference repository. We value the wealth of knowledge that's been shared here over the years. You'll continue to have access to this treasure trove of knowledge, for search purposes only.

Join the TIBCO Community
TIBCO Community is a collaborative space for users to share knowledge and support one another in making the best use of TIBCO products and services. There are several TIBCO WebFOCUS resources in the community.

  • From the Home page, select Predict: WebFOCUS to view articles, questions, and trending articles.
  • Select Products from the top navigation bar, scroll, and then select the TIBCO WebFOCUS product page to view product overview, articles, and discussions.
  • Request access to the private WebFOCUS User Group (login required) to network with fellow members.

Former myibi community members should have received an email on 8/3/22 to activate their user accounts to join the community. Check your Spam folder for the email. Please get in touch with us at community@tibco.com for further assistance. Reference the community FAQ to learn more about the community.


Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     Undesired Horizontal Line Appears in HTML Output

Read-Only Read-Only Topic
Go
Search
Notify
Tools
Undesired Horizontal Line Appears in HTML Output
 Login/Join
 
Platinum Member
posted
Hi There

I am getting a hrizontal line in my HTML output. The line is repated once on each page and is displayed after the final heading line. When I do a view source of the resulting html I see this...

<TR>
<TD COLSPAN=5>
<HR NOSHADE></TD>
</TR>
<TR>

So My question is, why is this line being inserted and how do I get rid of it.

My code is a simple SUM X BY Y ACROSS Z with some heading lines and some subhead lines. I am also using a stylesheet (and there is no mention of an HR in there!).

I will post a better sample if necessary. Actually, I have often seen this problem in many different fexes.

Thanks in advance.
 
Posts: 246 | Location: Montreal, QC, Canada | Registered: October 01, 2003Report This Post
<mhuber>
posted
Jodye,
If you can reproduce the situation using something like the CAR table, we might be able to help you better. Maybe do a simple SUM SEATS BY COUNTRY ACROSS BODYTYPE. Is your stylesheet a true CSS, or is it WebFOCUS styling? If it's a WF stylesheet, then you can embed the sheet into the FEX that you post here.

More info would be great.
Thanks,
Michael
 
Report This Post
Platinum Member
posted Hide Post
Hi Michael

Thanks for the response. Here is some sample code that will show you what I am talking about. Note that this problem only exists when you use ACROSS and when the grid is off. One suggestion that someone made to me is to change the style of <HR> in the html css to make it white so that it will not appear to the user. The HR is still there though. Any idea how to remove it from the output? Thanks! Jodye.

TABLE FILE CAR
PRINT CAR
BY COUNTRY
ACROSS BODYTYPE
ON TABLE SET STYLE *
GRID=OFF,
$
ENDSTYLE
END
 
Posts: 246 | Location: Montreal, QC, Canada | Registered: October 01, 2003Report This Post
<Pietro De Santis>
posted
Hi,

The HR is there because of the ACROSS and I don't think you can suppress it.

You could use CSS to hide it instead of turning it white. Try this:

TABLE FILE CAR
PRINT CAR
BY COUNTRY
ACROSS BODYTYPE
ON TABLE SET STYLE *
GRID=OFF, $
ENDSTYLE
END

-HTMLFORM BEGIN
[html]
[head]
[title]Report 101[/title]
[style]
HR { display: none; }
[/style]
[/head]
!IBI.FIL.H1;
[/html]
-HTMLFORM END

(Of course, the [] are <>Wink
 
Report This Post
Platinum Member
posted Hide Post
Hi Pietro

Thanks that is perfect.

Jodye
 
Posts: 246 | Location: Montreal, QC, Canada | Registered: October 01, 2003Report This Post
  Powered by Social Strata  

Read-Only Read-Only Topic

Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     Undesired Horizontal Line Appears in HTML Output

Copyright © 1996-2020 Information Builders