Created
November 30, 2011 16:58
-
-
Save libryder/1409800 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!--Begin Report Picker--> | |
| <div class="box2 title1"> | |
| <div class="rt-block"> | |
| <div class="module-title"><h2 class="title">Reports:</h2></div> | |
| <div class="rt-module-inner"> | |
| <div class="module-content"> | |
| <form action="" method="POST" accept-charset="UTF-8" name="search"> | |
| <div id="modify-search-content" class=""> | |
| <select style="width:100%;" name="report_name" value="Select Report" id="report_name" onChange="load_report(this.value, getRefineVals());"> | |
| <option selected="selected" value="">Select Report</option> | |
| <?php | |
| foreach($reports as $report) { | |
| $selected = null; | |
| if($linked_report == $report['Report']['file_name']) { | |
| $selected = ' selected'; | |
| } | |
| echo('<option value="'.$report['Report']['file_name'].'" '.$selected.'>'.$report['Report']['name'].'</option>'); | |
| } | |
| ?> | |
| </select> | |
| </div> | |
| </form> | |
| <div class="clear"></div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <!--End Report Picker--> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment