?
Current Path : /home1/savoy/www/savoyglobal.net/eldertree/application/views/report/ |
Linux gator3171.hostgator.com 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 |
Current File : /home1/savoy/www/savoyglobal.net/eldertree/application/views/report/view_student_list_report.php |
<?php if (!defined('BASEPATH')) exit('No direct script access allowed'); $this->load->view('documentreadyfunctions'); ?> <div class="row-fluid"> <div class="tab-pane " id="tab_2"> <div class="portlet-title"> </div> <?php $attributes = array('id' => 'validateform', 'class' => 'validate'); echo form_open('report/generate_report/get_student_list_report/_student_list_report', $attributes); ?> <div class="row-fluid"> <div class="span12"> <div class="portlet box yellow"> <div class="portlet-title"> <div class="caption"><i class="icon-check"></i>Student List</div> </div> <div class="portlet-body"> <table class="table table-striped table-hover table-bordered" id="sample_5" style="background-color: white;"> <tr><th colspan='2' style="text-align: center"> Select Class</th></tr> <tr> <td> Class </td> <td> <?php $class = $this->mastermodel->search_class_name(); // var_dump($class); ?> <select name="class_room_id" class="required" id="class_room_id"> <option value="all">All</option> <?php foreach ($class['results']->result_array() as $list) { ?> <option value="<?= $list['class_room_id'] ?>"><?= $list['class_room_name'] ?></option> <?php } ?> </select> </td> </tr> </table> <br/> <br/> <br/> <div class="form-actions"> <button style="float: right;margin-left: 10px;" type="button" class="clickimage" onclick="generate_pdf('report/generate_report/get_student_list_report/_student_list_report/view/')" >Generate</button> <button style="float: right;margin-left: 10px;" type="submit" class="clickimage" onclick="generateReport('report/generate_report/get_student_list_report/_student_list_report/xls/')" >XLS</button> <button style="float: right;margin-left: 10px;" type="submit" class="clickimage" onclick="generateReport('report/generate_report/get_student_list_report/_student_list_report/pdf/')" >PDF</button> </div> <input type="hidden" name="report_type" value="xls"/> <?php echo form_close(); ?> <div id="loadresult"></div> <div id="report_div"></div> </div> </div> </div> </div> </div> </div>