Loading...


Sample Script:

<FORM>  <!-- The FORM element is required if there are INPUT elements in the Widget -->

<!-- Include this once for each page. -->
  <SCRIPT src="rdPath/rdTemplate/rdWidget/rdWidget.js"> </SCRIPT>

<!-- Include this for each widget on the page.  -->
  <DIV ID="myWidgetDiv" >Loading...</DIV>
  <SCRIPT>
    var myWidget= new rdLogiWidget;
    myWidget.definition="rdWidgetDefinitionName";
    myWidget.containerID="myWidgetDiv";
    //rdRequestParams
    myWidget.load();
  </SCRIPT>

</FORM>