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     [SOLVED] AUTO REFRESH FOCEXEC REPORT IN HTML PAINTER

Read-Only Read-Only Topic
Go
Search
Notify
Tools
[SOLVED] AUTO REFRESH FOCEXEC REPORT IN HTML PAINTER
 Login/Join
 
Gold member
posted
I have a focexec that has in the stylesheet the following command:
type=data,column=n1,focexec=updateemp(emp_id='&emp_id),$
this line of code updates the focus database...how can I get the focexec to refresh in the html painter dashboard I created after the database is updated without recalling the entire html page. I just want to refresh the frame called 'report1' ...thanks

This message has been edited. Last edited by: Kerry,


8.0.9, Windows
excel / pdf
 
Posts: 89 | Registered: October 21, 2010Report This Post
Expert
posted Hide Post
I think Javascript will be the way to go.

This message has been edited. Last edited by: Waz,


Waz...

Prod:WebFOCUS 7.6.10/8.1.04Upgrade:WebFOCUS 8.2.07OS:LinuxOutputs:HTML, PDF, Excel, PPT
In Focus since 1984
Pity the lost knowledge of an old programmer!

 
Posts: 6347 | Location: 33°49'23.0"S, 151°11'41.0"E | Registered: October 31, 2006Report This Post
Gold member
posted Hide Post
does anyone have an example on how to do this?
thanks


8.0.9, Windows
excel / pdf
 
Posts: 89 | Registered: October 21, 2010Report This Post
Guru
posted Hide Post
You can ask the called fex to click the Run button on your report page to refresh the iframe with the updated data.

Something like this:

-HTMLFORM BEGIN
<HTML>
<HEAD></HEAD>
<BODY ONLOAD=window.parent.document.getElementById("form2Submit").click();></BODY>
</HTML>
-HTMLFORM END


WF 8.1.05 Windows
 
Posts: 333 | Location: Orlando, FL | Registered: October 17, 2006Report This Post
<FreSte>
posted
What about adding the following code at the end of the fex that's updating the database:
(assuming that the fex that's updating the database is executed in another iframe on the same page
and maybe you have to add a timestamp at the end of the url to make sure the request is not read/retrieved from the browser's cache)

-HTMLFORM BEGIN
<html>
<script>
  parent.document.getElementById("report1").src = parent.document.getElementById("report1").src;
</script>
</html>
-HTMLFORM END
 
Report This Post
Gold member
posted Hide Post
Thanks for all your responses..I will give this a try.


8.0.9, Windows
excel / pdf
 
Posts: 89 | Registered: October 21, 2010Report This Post
Expert
posted Hide Post
You can control the call to the update by setting how long between calls.

e.g.
<html>
 <head>
  <script type="text/javascript">
   <!--
    function funLoopedSubmit() {
        var _Output = document.getElementById('output') ;
        _Output.value = new Date() ;
        setTimeout("funLoopedSubmit();", 1000);
    }
   //-->
  </script>
 </head>

 <body>
  <input type="button" value="Start" onclick="funLoopedSubmit();">
  <br>
  <input type="text" name="output" id="output">
  </form>
 </body>
</html>


Waz...

Prod:WebFOCUS 7.6.10/8.1.04Upgrade:WebFOCUS 8.2.07OS:LinuxOutputs:HTML, PDF, Excel, PPT
In Focus since 1984
Pity the lost knowledge of an old programmer!

 
Posts: 6347 | Location: 33°49'23.0"S, 151°11'41.0"E | Registered: October 31, 2006Report This Post
Gold member
posted Hide Post
here's the code I used to get this to work:
-HTMLFORM BEGIN
<html>
<script>
  parent.document.getElementById("report5").src = parent.document.getElementById("report5").src;
  //Begin function refreshrpt
//function refreshrpt () {
var myrefresh= parent.document.getElementById("button8");
var myevent = parent.document.createEventObject();
myrefresh.fireEvent('onclick',myevent);
//}
//End function refreshrpt
</script>
</html>
-HTMLFORM END
-RUN



thanks for your help !!

This message has been edited. Last edited by: Kerry,


8.0.9, Windows
excel / pdf
 
Posts: 89 | Registered: October 21, 2010Report 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     [SOLVED] AUTO REFRESH FOCEXEC REPORT IN HTML PAINTER

Copyright © 1996-2020 Information Builders