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.
 
 
 
 
 

53 lines
2.6 KiB

<%@ Page Title="" Language="C#" MasterPageFile="~/AgentNew/AgentMain.Master" AutoEventWireup="true" CodeBehind="CustomerPendingList.aspx.cs" Inherits="Swift.web.AgentNew.TabletMenu.CustomerPendingList" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="server">
<script type="text/javascript">
function RedirectToVerify(customerId, membershipId, rowIdField, verifyType) {
if (verifyType == 'Customer Pending') {
window.location.replace("/AgentNew/TabletMenu/CustomerSignature.aspx?customerId=" + customerId);
}
else if (verifyType == 'Beneficiary Pending') {
window.location.replace("/AgentNew/TabletMenu/BeneficiarySignature.aspx?customerId=" + customerId + "&receiverId=" + rowIdField + "&membershipId=" + membershipId);
}
else if (verifyType == 'Transaction Pending') {
window.location.replace("/AgentNew/TabletMenu/TransactionSignature.aspx?customerId=" + customerId + "&controlNo=" + rowIdField + "&membershipId=" + membershipId);
}
}
</script>
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" runat="server">
<div class="page-wrapper">
<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="#">JME Tablet</a></li>
<li><a href="#" class="active">Document Pending List</a></li>
</ol>
</div>
</div>
</div>
<div class="listtabs">
<ul class="nav nav-tabs" role="tablist">
<li role="presentation"><a href="#">Document Pending List</a></li>
</ul>
</div>
<div class="row">
<div class="col-md-12">
<div class="panel panel-default ">
<div class="panel-heading">
<h4 class="panel-title">Document Pending List:
</h4>
<div class="panel-actions">
<a href="#" class="panel-action panel-action-toggle" data-panel-toggle=""></a>
</div>
</div>
<div class="panel-body">
<div id="rpt_grid" runat="server"></div>
</div>
</div>
</div>
</div>
</div>
</asp:Content>