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 : 18.217.242.39
<script>
$("#abs_sub_date").datepicker({
showOn: "button",
showButtonPanel: true,
changeMonth: true,
changeYear: true,
dateFormat: "dd/mm/yy",
buttonImage: "images/cal.jpg",
buttonImageOnly: true,
});
</script>
<script type="text/javascript">
$(function () {
$("#tabs").tabs();
});
$(function () {
$("#sub_tabs").tabs();
});
</script>
<style>
tables {
width: 100%;
border: 1px solid;
border-collapse: collapse;
}
.column {
/* width: 100px; */
font-size: 12px;
font-weight: bold;
border-left: 1px solid #c5dbec;
border-right: 1px solid #244660;
border-top: 1px solid #c5dbec;
border-bottom: 1px solid #c5dbec;
}
.tr_table {
color: #fff;
background: #184f76;
height: 35px;
font-weight: bold;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 12px;
}
input {
width: 95%;
}
</style>
<div id="tabs">
<ul>
<li>
<a href="#">Room Declaration & Capacity</a>
</li>
</ul>
<div id="abs_entry_subjectwise" style="margin-top: 10px; overflow: auto">
<table class="content-tbl" cellpadding="5" cellspacing="2" width="100%">
<tr>
<td style="width: 160px" align="right">No. of Rooms Required:</td>
<td>
<input
type="text"
id="totalrooms"
onkeypress="return AcceptNumbersOnly(event);"
class="textInputEnabled"
maxlength="2"
style="width: 60px; text-align: center"
/>
<span
style="
background-color: #008cba;
border: none;
color: white;
padding: 5px 10px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 12px;
cursor: pointer;
border-radius: 3px;
"
onclick="DisplayRoomDeclarationDetatils();"
>View</span
>
</td>
</tr>
</table>
<div
align="center"
id="roomdeclaration"
style="
height: auto;
overflow: auto;
margin-top: 10px;
margin-left: auto;
margin-right: auto;
"
></div>
</div>
</div>
|