Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

So go ahead and delete all those functions, and ensure your new HTML source file is as follows:

Code Block
languagehtml
<html>

  <head>

    <style>

      <!–– CSS Goes here ––>   

    </style>   

  </head>

  <script type='text/javascript' src='FRToolBox.js'></script>

  <script src="jquery-3.4.1.min.js"></script>

  <script src="jquery-ui.min.js"></script>

  <!–– Import other sources here ––>

  <script>

    

    FMLink = 'FM.link';

    // This is where variables are set from the given parameters

    var RecordsObj = new Object;

    FMTableOccurrenceName = '<?Reactor bbdev_TO( $PlanetIDField ) Reactor?>';

    FunctionWhereClause = '<?Reactor bbdev_Relationship( bbdev_TO( $PlanetIDField  ) ) Reactor?>';

    CreationValues = '<?reactor bbdev_relationshipKeyBuilder ( $FMTableOccurrenceName ) reactor?>';

    PlanetIDField = '<?Reactor bbdev_Field( $PlanetIDField ) Reactor?>';

    PlanetNameField = '<?Reactor bbdev_Field( $PlanetNameField ) Reactor?>';

    PlanetDescriptionField = '<?Reactor bbdev_Field( $PlanetDescriptionField ) Reactor?>';

    PlanetTripNoField = '<?Reactor bbdev_Field( $PlanetTripNoField ) Reactor?>';

    PlanetSortNoField = '<?Reactor bbdev_Field( $PlanetSortNoField ) Reactor?>';

    Columns = '<?Reactor $Columns Reactor?>';

  </script>

  <body>  

    <div>  

    <!–– This is the main HTML for the BlackBox ––>

    </div>  

  </body>

</html>   

...