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

  1. <%@ Page Title="" Language="C#" MasterPageFile="~/AgentNew/AgentMain.Master" AutoEventWireup="true" CodeBehind="CustomerPendingList.aspx.cs" Inherits="Swift.web.AgentNew.TabletMenu.CustomerPendingList" %>
  2. <asp:Content ID="Content1" ContentPlaceHolderID="head" runat="server">
  3. <script type="text/javascript">
  4. function RedirectToVerify(customerId, membershipId, rowIdField, verifyType) {
  5. if (verifyType == 'Customer Pending') {
  6. window.location.replace("/AgentNew/TabletMenu/CustomerSignature.aspx?customerId=" + customerId);
  7. }
  8. else if (verifyType == 'Beneficiary Pending') {
  9. window.location.replace("/AgentNew/TabletMenu/BeneficiarySignature.aspx?customerId=" + customerId + "&receiverId=" + rowIdField + "&membershipId=" + membershipId);
  10. }
  11. else if (verifyType == 'Transaction Pending') {
  12. window.location.replace("/AgentNew/TabletMenu/TransactionSignature.aspx?customerId=" + customerId + "&controlNo=" + rowIdField + "&membershipId=" + membershipId);
  13. }
  14. }
  15. </script>
  16. </asp:Content>
  17. <asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" runat="server">
  18. <div class="page-wrapper">
  19. <div class="row">
  20. <div class="col-sm-12">
  21. <div class="page-title">
  22. <h1></h1>
  23. <ol class="breadcrumb">
  24. <li><a href="../../Front.aspx" target="mainFrame"><i class="fa fa-home"></i></a></li>
  25. <li><a href="#">JME Tablet</a></li>
  26. <li><a href="#" class="active">Document Pending List</a></li>
  27. </ol>
  28. </div>
  29. </div>
  30. </div>
  31. <div class="listtabs">
  32. <ul class="nav nav-tabs" role="tablist">
  33. <li role="presentation"><a href="#">Document Pending List</a></li>
  34. </ul>
  35. </div>
  36. <div class="row">
  37. <div class="col-md-12">
  38. <div class="panel panel-default ">
  39. <div class="panel-heading">
  40. <h4 class="panel-title">Document Pending List:
  41. </h4>
  42. <div class="panel-actions">
  43. <a href="#" class="panel-action panel-action-toggle" data-panel-toggle=""></a>
  44. </div>
  45. </div>
  46. <div class="panel-body">
  47. <div id="rpt_grid" runat="server"></div>
  48. </div>
  49. </div>
  50. </div>
  51. </div>
  52. </div>
  53. </asp:Content>