Bug Fix From Ria
This commit is contained in:
parent
4df671bc3f
commit
ed361d05aa
@ -249,8 +249,8 @@ $currentday = date('d');
|
|||||||
<?php $today = date('M-Y'); ?>
|
<?php $today = date('M-Y'); ?>
|
||||||
<input type="text" name="month" id="month" value="<?php echo $datefordropdown; ?>" class="form-control" data-provide="datepicker" data-date-format="M-yyyy" data-date-min-view-mode="1">
|
<input type="text" name="month" id="month" value="<?php echo $datefordropdown; ?>" class="form-control" data-provide="datepicker" data-date-format="M-yyyy" data-date-min-view-mode="1">
|
||||||
</div>
|
</div>
|
||||||
<div class="col-1">
|
<div class="col-1" style="display: none;">
|
||||||
<input type="submit" value="Change Month" class="btn btn-success"
|
<input type="submit" id="changemonth" value="Change Month" class="btn btn-success"
|
||||||
title='click here for load attendance for specified month' style="margin-top:0px;">
|
title='click here for load attendance for specified month' style="margin-top:0px;">
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@ -1147,3 +1147,11 @@ $("#searchInput").on("keyup", function () {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
$(document).ready(function(){
|
||||||
|
$('#month').change(function(){
|
||||||
|
$('#atten').submit();
|
||||||
|
})
|
||||||
|
})
|
||||||
|
</script>
|
||||||
Loading…
Reference in New Issue
Block a user