Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64
Your IP : 3.144.28.90
<script type="text/javascript">
$("#qp_frm_date").datepicker({
showOn: "button",
showButtonPanel: true,
changeMonth: true,
changeYear: true,
dateFormat: "dd/mm/yy",
buttonImage: "images/cal.jpg",
buttonImageOnly: true,
});
$("#qp_to_date").datepicker({
showOn: "button",
showButtonPanel: true,
changeMonth: true,
changeYear: true,
dateFormat: "dd/mm/yy",
buttonImage: "images/cal.jpg",
buttonImageOnly: true,
});
$(function () {
$("#tabs").tabs();
});
$(function () {
$("#sub_tabs").tabs();
});
</script>
<div id="tabs">
<ul>
<li><a href="#Report_degree_list">General</a></li>
</ul>
<div id="Report_daily_report_div">
<table>
<tr>
<td>Exam Date Range</td>
<td>:</td>
<td>
<input
type="text"
id="fdate"
style="height: 24px; margin: 2px"
onkeypress="return acceptNumbersOnlyForModule(event);"
onkeydown="dmydateformat(event,this.id)"
placeholder="dd/mm/yyyy"
maxlength="10"
/>
-
<input
type="text"
id="tdate"
style="height: 24px; margin: 2px"
onkeypress="return acceptNumbersOnlyForModule(event);"
onkeydown="dmydateformat(event,this.id)"
placeholder="dd/mm/yyyy"
maxlength="10"
/>
</td>
</tr>
<tr>
<td>QP Code Range</td>
<td>:</td>
<td>
<input
type="text"
id="qp_code_start"
style="height: 24px; margin: 2px"
onkeydown="return keyboardSubjectQPPopup(event,this.id,$('#qp_code_start').val())"
onfocus="$g_focus_element='qp_code_start';"
value="0"
/>
-
<input
type="text"
id="qp_code_end"
style="height: 24px; margin: 2px"
onkeydown="return keyboardSubjectQPPopup(event,this.id,$('#qp_code_end').val())"
onfocus="$g_focus_element='qp_code_end';"
value="ZZZZZ"
/>
</td>
</tr>
<tr>
<td>Session</td>
<td>:</td>
<td>
<select id="section" style="width: 450px; height: 30px; margin: 2px">
<option value="">---Select Session---</option>
<option value="M%">Mooring</option>
<option value="N%">After Noon</option>
<option value="both">both</option>
</select>
</td>
</tr>
</table>
</div>
</div>
|