You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

108 lines
4.6 KiB

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="VerifyMobileCustomer.aspx.cs" Inherits="Swift.web.MobileRemit.Admin.Operation.VerifyMobileCustomer" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<link href="/ui/bootstrap/css/bootstrap.min.css" rel="stylesheet" />
<link href="/ui/css/style.css" rel="stylesheet" />
<link href="/ui/font-awesome/css/font-awesome.css" rel="stylesheet" />
<link href="/js/jQuery/jquery-ui.css" rel="stylesheet" type="text/css" />
<script src="/ui/js/jquery.min.js"></script>
<script src="/ui/js/jquery-ui.min.js"></script>
<script src="/ui/bootstrap/js/bootstrap.min.js"></script>
<script src="/js/functions.js"></script>
<script src="/js/swift_calendar.js" type="text/javascript"></script>
<script src="/js/Swift_grid.js"></script>
<script type="text/javascript">
$(document).ready(function () {
ShowCalFromToUpToToday("#grid_list_fromDate", "#grid_list_toDate");
$('a[title="Reject"]').css("display", "none");
});
function reuploadData(customerId) {
debugger;
dataToSend = { MethodName: 'reuploadData', customerId: customerId };
if (confirm('Are you sure you want to clear customer KYC?')) {
$.post("", dataToSend, function (response) {
var data = jQuery.parseJSON(response);
if (data.ErrorCode == 0) {
alert(data.Msg);
window.location.reload();
} else {
alert(data.Msg);
}
});
}
}
function deleteCustomer(customerId) {
dataToSend = { MethodName: 'deleteCustomer', customerId: customerId };
if (confirm('Are you sure you want to delete this customer?')) {
$.post("", dataToSend, function (response) {
var data = jQuery.parseJSON(response);
if (data.ErrorCode == 0) {
alert(data.Msg);
window.location.reload();
} else {
alert(data.Msg);
}
});
}
}
//function DeleteRow(customerId, customerName, isActive) {
// var verifyText = 'Are you sure to delete ' + customerName + '?';
// if (customerId != '') {
// $('#isActive').val(isActive);
// $('#hideCustomerId').val(customerId);
// if (isActive == 'Y') {
// verifyText = 'Are you sure to disable ' + customerName + '?';
// }
// if (confirm(verifyText)) {
// $('#btnUpdate').click();
// }
// }
//}
</script>
</head>
<body>
<form id="form1" runat="server">
<div class="row">
<div class="col-sm-12">
<div class="page-title">
<h1></h1>
<ol class="breadcrumb">
<li><a href="/Front.aspx" target="mainFrame"><i class="fa fa-home"></i></a></li>
<li><a href="#">Mobile</a></li>
<li><a href="#">Mobile-Operations</a></li>
<li class="active"><a href="List.aspx">Verify Customer From Mobile</a></li>
</ol>
</div>
</div>
</div>
<!-- Nav tabs -->
<div class="listtabs">
<ul class="nav nav-tabs" role="tablist">
<li role="presentation" class="active"><a href="#" aria-controls="home" role="tab" data-toggle="tab">Verify Pending From Mobile </a></li>
</ul>
</div>
<!-- Tab panes -->
<div class="tab-content">
<div role="tabpanel" class="tab-pane active" id="list">
<!--end .row-->
<div class="row">
<div class="col-md-12">
<div class="panel panel-default">
<div class="panel-body">
<div id="rpt_grid" runat="server" class="gridDiv" enableviewstate="false"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</form>
</body>
</html>