File: //home/cafsindia/refimac_cafsjobs_com/know_ext_doc.php
<div id="contentwrapper">
<div class="main_content">
<div class="page-head">
<div class="container">
<!-- BEGIN PAGE TITLE -->
<div class="page-title">
<h1>Existing Software doc. <small></small></h1>
</div>
</div>
</div>
<div class="page-content">
<div class="container">
<div class="row-fluid">
<div class="span12">
<?php
if($nav=="1"||$nav=="3")
echo "<div class='alert alert-success'>
<span>Given information successfully updated !</span>
</div>";
elseif($nav=="2"||$nav=="4"||$nav=="6")
echo "<div class='alert alert-warning'>
<span>sorry, given information not updated, please try again !</span>
</div>";
elseif($nav=="5")
echo "<div class='alert alert-danger'>
<span>Selected Record successfully deleted !</span>
</div>";
?>
</div>
</div>
<div class="page-content-inner">
<form name="form1" action="<?php if($up==1)echo "up"; else echo "ad";?>d_details.php?mid=<?php echo $mid;?>&smid=<?php echo $smid;?>&pid=<?php echo $pid;?>" method="post">
<div class="portlet light">
<div class="row">
<div class="col-md-12">
<label>Detail Information
</label>
</div>
</div>
<div class="col-md-12">
<table width="528" border="1" class="table table-striped table-bordered table-hover dt-responsive">
<tr>
<td width="37"><strong>S.No.</strong></td>
<td width="194"><strong>Items</strong></td>
<td width="275"><strong>Descreption</strong></td>
</tr>
<tr>
<td>1</td>
<td>Total Number of Tables </td>
<td>10 tables </td>
</tr>
<tr>
<td>2</td>
<td>Maximum Number of Records </td>
<td>5,67,458</td>
</tr>
<tr>
<td>3</td>
<td>Data Migration Time Taken</td>
<td>33 Hrs </td>
</tr>
</table>
</div>
<div class="row">
<div class="col-md-12">
</br></br>
</br>
</div>
</div>
<div class="row">
<div class="col-md-12">
<label>Relationship Diagram </label>
</div>
</div>
<div class="row">
<div class="col-md-12">
<iframe src="refimac_old_software.html" height="1000" width="100%"></iframe>
</div>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
<script>
$(document).ready(function()
{
if ( $.fn.dataTable.isDataTable( '#sample' ) ) {
table = $('#sample').DataTable();
}
else {
table = $('#sample').DataTable( {
dom: 'Bfrtip',
buttons: [
'copy', 'csv', 'excel', 'pdf', 'print','pageLength'
], lengthMenu: [
[ 10, 25, 50, -1 ],
[ '10 rows', '25 rows', '50 rows', 'Show all' ]
]
} );
}
$('.cancel').click(function()
{
location.reload();
});
});
// Wait for the DOM to be ready
$(function() {
// Initialize form validation on the registration form.
// It has the name attribute "registration"
$("form[name='form1']").validate({
// Specify validation rules
rules: {
// The key name on the left side is the name attribute
// of an input field. Validation rules are defined
// on the right side
EMP_NAME: "required",
EMP_MOBILE: "required",
EMP_DOJ: {
required: true,
// Specify that email should be validated
// by the built-in "email" rule
//email: true
}
},
// Specify validation error messages
messages: {
EMP_NAME: "Please enter employee name",
EMP_MOBILE: "Please enter employee mobile",
page_name: "Please select doj"
},
// Make sure the form is submitted to the destination defined
// in the "action" attribute of the form when valid
submitHandler: function(form) {
form.submit();
}
});
});
</script>