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.145.69.185
<script type="text/javascript">
$(function () {
$('#tabs').tabs()
})
$(function () {
$('#sub_tabs').tabs()
})
</script>
<style type="text/css">
.input {
width: 200px;
height: 24px;
margin-bottom: 10px;
}
.select {
width: 400px;
height: 29px;
margin-bottom: 10px;
}
</style>
<div id="tabs">
<ul>
<li><a href="#">Student Detailed Report</a></li>
</ul>
<div style="overflow: auto; padding: 1rem">
<table class="content-tbl" cellpadding="5" cellspacing="2" width="100%">
<tr>
<td align="right" style="width: 140px">Degree Group:</td>
<td>
<select
id="stud_degree_code"
onchange="getDegreestudreport()"
class="textInputEnabled"
style="width: 100%; height: 28px"
></select>
</td>
</tr>
<tr>
<td align="right" style="width: 140px">Degree:</td>
<td>
<select
id="report_degree_code"
onchange="getYearstudreport()"
class="textInputEnabled"
style="width: 100%; height: 28px"
></select>
</td>
</tr>
<tr>
<td align="right" style="width: 140px">Report Type:</td>
<td>
<select
id="Reprttype"
class="textInputEnabled"
style="width: 100%; height: 28px"
>
<option value="stdwise">Student Wise Report</option>
</select>
</td>
</tr>
<tr>
<td align="right" style="width: 140px">Admission Year:</td>
<td>
<select
id="ddlYears"
class="textInputEnabled"
style="width: 200px; height: 28px"
></select>
</td>
</tr>
<tr>
<td></td>
<td>
<span
onclick="getstuddetreport()"
style="
background-color: #008cba;
color: white;
padding: 6px 15px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 13px;
cursor: pointer;
border-radius: 3px;
"
>
Report
</span>
</td>
</tr>
</table>
</div>
<div id="studregistrdet"></div>
</div>
|