| Current Path : /home2/wtmwscom/public_html/member/ |
| Current File : /home2/wtmwscom/public_html/member/withdrawal_history.php |
<?php
$title= "Withdrawal Report";
include 'header.php';
$uid = $_SESSION['userid'];
?>
<div class="container-fluid">
<div class="row">
<div class="col-sm-12">
<div class="page-title-box">
<h4 class="page-title">Withdrawal History</h4>
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="index.php">Home</a></li>
<li class="breadcrumb-item"><a href="#">Report</a></li>
<li class="breadcrumb-item active">Withdrawal History</li>
</ol>
</div>
</div>
</div>
<!-- end row -->
<div class="row">
<div class="col-12">
<div class="card m-b-20">
<div class="card-body">
<?php echo getMessage(); ?>
<div class="card-body">
</div>
<table class="table table-striped table-bordered table-hover dt-responsive datatable-ajax" style="border-collapse: collapse; border-spacing: 0; width: 100%;">
<tfoot align="right">
<tr><th style="text-align: left;" colspan="1">Total</th>><th style="text-align: left;" colspan="3"></th></tr>
</tfoot>
</table>
</div>
</div>
</div> <!-- end col -->
</div> <!-- end row -->
</div> <!-- container-fluid -->
<script type="text/javascript">
var columnMetadataAll = [{"data": "sno", "title": "S.No."}, {"data": "amount", "title": "Amount"}, {"data": "balance", "title": "Balance"}, {"data": "datetime", "title": "Date"}];
var urlAll = "./report/withdrawal_history_json.php";
var table = null;
$(document).ready(function () {
table = loadDataTable('.datatable-ajax',urlAll, columnMetadataAll, true, 2);
$("#search-form").submit(function (e) {
table.ajax.reload();
e.preventDefault(); // avoid to execute the actual submit of the form.
});
$('.datatable-ajax tbody').on('click', 'tr', function () {
var data = table.row(this).data();
//window.location ='/'+moduleCode+'/view/?id='+data.id;
});
});
</script>
<?php include 'footer.php'; ?>