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.
Just wondering if anyone here have incorporated Jquery Tabs and HighCharts.
At the moment we are using Jquery Tabs to display Report output. We also have a seperate fex that output an Interactive HighChart graph www.highcharts.com
We have a request to incorporate the Highchart into the Jquery Tab. We tried putting the highchart html into Jquery Tab 3 but its unstable and lags.
JQUERY TAB HTML
TABLE FILE CAR
SUM
SALES
BY COUNTRY
ON TABLE HOLD AS MYREPORT1 FORMAT HTML
END
TABLE FILE CAR
SUM
DEALER_COST
BY CAR
ON TABLE HOLD AS MYREPORT2 FORMAT HTML
END
-HTMLFORM BEGIN
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Daily Sales Summary</title>
<link rel="stylesheet" href="https://localhost/approot/jquery/development-bundle/themes/base/jquery.ui.all.css">
<script src="https://localhost/approot/jquery/js/jquery-1.9.1.js"></script>
<script src="https://localhost/approot/jquery/development-bundle/ui/jquery.ui.core.js"></script>
<script src="https://localhost/approot/jquery/development-bundle/ui/jquery.ui.widget.js"></script>
<script src="https://localhost/approot/jquery/development-bundle/ui/jquery.ui.tabs.js"></script>
<link rel="stylesheet" href="https://localhost/approot/jquery/development-bundle/demos/demos.css">
<script>
$(function() {
$( "#tabs" ).tabs();
});
</script>
<body>
<div id="tabs">
<ul>
[*]<a href="#tabs-1">Sales By Country View</a>
[*]<a href="#tabs-2">Dealer Cost by Car Maker View</a>
[*]<a href="#tabs-3">HighChart Graph</a>
</ul>
<div id="tabs-1">
!IBI.FIL.MYREPORT1;
</div>
<div id="tabs-2">
!IBI.FIL.MYREPORT2;
</div>
<div id="tabs-3">
[B]//put highchart html graph[/B] </div>
</div>
</body>
</html>
-HTMLFORM END