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.
Hi, i am trying to add borders to data in a report. this works fine when i am not using active html (ahtml). the moment i include AHTML the borders just goes off. try the below code TABLE FILE CAR PRINT COUNTRY CAR MODEL SALES ON TABLE SET PAGE-NUM OFF ON TABLE NOTOTAL -*ON TABLE SET ONLINE-FMT AHTML ON TABLE SET HTMLCSS ON ON TABLE SET STYLE * UNITS=IN, PAGESIZE='SCREEN', LEFTMARGIN=0.000000, RIGHTMARGIN=0.000000, TOPMARGIN=0.000000, BOTTOMMARGIN=0.000000, SQUEEZE=ON, GRID=OFF, ORIENTATION=PORTRAIT, $ TYPE=REPORT, FONT='ARIAL', SIZE=9, $ TYPE=TITLE, STYLE=BOLD, $ TYPE=DATA, COLUMN=N1, BORDER=LIGHT, BORDER-STYLE=RIDGE, BORDER-COLOR=RGB(51 51 153), SIZE=8, COLOR='BLACK', $ ENDSTYLE END the above code works fine. remove the comment and the border around country goes off. Anyone knows what can be done for this. Regards Adesh WEB FOCUS Version 7.1 OS Window XP
Adesh, Because of all the styling and javascript that goes into an Active Report your styling gets overruled because of the order for which styles are applied. To get around this, add the following to your code for AHTML ouput and modify as needed.
DEFINE FILE CAR
CNTRY_DIV/A100V='<DIV STYLE="border:RGB(51 51 153) ridge 1px">' | COUNTRY | '</DIV>';
END
TABLE FILE CAR
PRINT
CNTRY_DIV AS 'Country'
I hope this helps. Greg
Greg
current client: WF 8.1.05 & 8.2 - Windows 7 64bit - Tomcat 7 - MRE / BID - IE11