Currently, the types of controls you can add to your report include date filters, group selectors, and paging menus. You can also customize the submit buttons.


Controls should be contained within an html form.


To use the standard ToolZ form:


{DATATYPES.CONTROLS_START}
<!-- your controls go here -->
{DATATYPES.CONTROLS_END}



If you would like to customize that form, replace {DATATYPES.CONTROLS_START}, {DATATYPES.CONTROLS_END}, and everything in between with:


<form action='' method='post'>

  <fieldset>

    <!-- your controls go here -->

    <div class='controls'>

      #do not remove this or move it outside the form 

      #otherwise, the submit buttons will not work

      {PAGE.SUBMIT.INPUT}


      #these can be removed and moved around as needed

      {PAGE.SUBMIT.STANDARD_VIEW}

      {PAGE.SUBMIT.PRINT_VIEW(class="k_submit")}

      {PAGE.SUBMIT.PDF_VIEW(class="k_submit")}

      {PAGE.SUBMIT.SPREADSHEET_VIEW(class="k_submit")}

    </div>

  </fieldset>

</form>