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.15.3.17
<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>
<link rel="stylesheet" href="../select2/css/select2.min.css" />
<script src="../select2/js/select2.full.min.js"></script>
<link
rel="stylesheet"
href="../select2-bootstrap4-theme/select2-bootstrap4.min.css"
/>
<div id="tabs">
<ul>
<li><a href="#Report_degree_list">Room Allotment Datewise</a></li>
</ul>
<div id="Report_daily_report_div" style="overflow: auto; padding: 1rem">
<table class="content-tbl" cellpadding="5" cellspacing="2" width="100%">
<tr>
<td style="width: 140px" align="right">Degree Group:</td>
<td>
<select
id="deggrp"
class="textInputEnabled"
style="width: 100%; height: 28px"
>
<option value="">-Select-</option>
</select>
</td>
</tr>
<tr>
<td style="width: 140px" align="right">Date:</td>
<td>
<input
type="text"
id="frm_date"
onkeypress="return acceptNumbersOnlyForModule(event);"
onkeydown="dmydateformat(event,this.id)"
placeholder="DD/MM/YYYY"
maxlength="10"
class="textInputEnabled"
style="width: 120px; height: 20px; text-align: center"
/>
</td>
</tr>
<tr>
<td style="width: 140px" align="right">Session:</td>
<td>
<select
id="session"
class="textInputEnabled"
style="width: 100%; height: 28px"
>
<option value="">Select Session</option>
<option value="M%">Morning (M1)</option>
<option value="N%">After Noon (N1)</option>
<!--<option value = 'both'>both</option>-->
</select>
</td>
</tr>
<tr>
<td style="width: 140px" align="right">Room Range:</td>
<td>
<select
class="select2 p-0"
data-live-search="true"
multiple
id="selectbox"
class="textInputEnabled"
style="width: 100%"
></select>
<!-- <select
id="ra_from"
style="width: 150px; height: 30px; margin: 2px"
></select>
-
<select
id="ra_to"
style="width: 150px; height: 30px; margin: 2px"
></select> -->
</td>
</tr>
<tr>
<td></td>
<td>
<span
onclick="DisplayRoomAllotmentDetatilsDatewiseStph();"
style="
background-color: #008cba;
border: none;
color: white;
padding: 6px 10px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 12px;
cursor: pointer;
border-radius: 3px;
margin: 2px;
"
>Save</span
>
</td>
</tr>
</table>
<div id="room_allotment" style="height: auto; overflow: auto"></div>
</div>
</div>
<script>
$('.select2').select2()
</script>
|