Javascript to help control refreshing data in a different frame.

Javascript to help control refreshing data in a different frame.

Javascript to help control refreshing data in a different frame.
parent.frames['frame name here'].location.reload();

 
Refresh a specific frame on a split pane report after an add / update / delete on a form. 
Example for this will be you may have a split pane set up where in the left pane there is a report which holds a link that opens a form in the right pane. After submitting data on that form in the right pane, you may just want to refresh the report in the left pane. One easy way to accomplish this is to add some post run javascript on the form.
 
Suppose you wanted to refresh the report in the left pane after a form add action in the right pane, you would add the following to the "@@formmode@@" == "add" section:
parent.frames['__splitPane1'].location.reload();
 
Working example:
if ( "@@formmode@@" == "add" ) {
    //Add code here for adds
parent.frames['__splitPane1'].location.reload();
}
else if ( "@@formmode@@" == "update" ) {
    //Add code here for update
}
else if ( "@@formmode@@" == "delete" ) {
    //Add code here for deletes
}

    Can't find the KB

    Unable to find the KB to address your issue ?  

      • Recent Articles

      • Change Reset Password Button Text

        Change the text of the "Reset Password" button on the UW Login Page How to change the text of the Reset Password button on the Login Page. Login to webNetwork and open webAdmin on your Relay Central Server Expand Customization Center Expand Tenants ...
      • Remove Reset Password Button From Login Page

        Remove the Reset Password Button from the Login Page How to remove the Reset Password button from the Unified Workspace login page. Login to webNetwork and open webAdmin on your Relay Central Server Expand Customization Center Expand Tenants Expand ...
      • Lenovo Unified Workspace End-of-Life Questions and Answers

        As of January 31st 2024, Lenovo Unified Workspace (formerly Stoneware Webnetwork) is no longer supported. This means that we no longer provide licenses, downloads, updates, patches, or technical assistance for this product. If you have any questions ...
      • How do I determine my Unified Workspace license expiration date?

        The best method for determining the licensing information including the expiration date of your Unified Workspace license: Login to your 8090 management console on each server This may take remoting into each LUW server and relay, opening a browser, ...
      • Lenovo Unified Workspace 7.0.2.13 Released

        Highlights of Unified Workspace 7.0.2.13 Before you install: Please view the installation notes here. 7.0.2.13 requires a 7.0 license file. Below is a list of enhancements and fixes released in Unified Workspace 7.0.2.13 Fixed external storage ...
      • Related Articles

      • How is data secured in Unified Workspace

        Some customers have asked if Unified Workspace is FIPS Certified and specifically FIPS 140-2.  Being FIPS  certified means that your software uses FIPS  certified cryptographic modules and has been verified by one of the approved NIST laboratories. ...
      • Missing TSC ActiveX control

        Customer has windows 7 and is trying to use a Terminal Service VPN webapp. When it is launched a pop up shows the message : Missing TSC ActiveX Control(s). Click the Information Bar to allow Installation of TSC ActiveX control  System check says that ...
      • Missing RDP ActiveX Control

        When you login to 6.0.5.0 with IE9 in compatibility mode and try to launch a ts proxy webapplication you get a message from IE that says : Missing RDP ActiveX Control. Click the Information Bar to allow installation of RDP ActiveX control. The yellow ...
      • What does webNetwork send to the SQL server to purge logging data each night?

        Each night at midnight the loader sends a SQL command to the SQL server to purge old log information.  That command is as follows : DELETE FROM LogTable WHERE LogTime < 'some date'; 'some date' is formatted like this: yyyy-MM-dd HH:mm:ss If your ...
      • Move webNetwork to different server

        *** If you are moving to a different OS, please see : https://helpdesk.lenovosoftware.com/portal/kb/articles/migrate-webnetwork-to-windows-linux-22-8-2017 *** Keeping the same OS / version / IP As long as you are keeping the same OS/ version/IP then ...