Subversion Repositories SmartDukaan

Rev

Rev 29774 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
29763 tejbeer 1
<section class="wrapper">
2
    <div class="row">
3
        <div class="col-lg-12">
4
            <h3 class="page-header">Add KYC</i></h3>
5
            <ol class="breadcrumb">
6
                <li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">Home</a></li>
7
                <li><i class="icon_document_alt"></i>ADD KYC</li>
8
 
9
                #if($pobp.getBusinessType() != "Proprietorship") 
10
 
11
                <li><button class="btn btn-primary addNewRow" 
12
						data-id = "$pobp.getId()" type="button">Add New Person</button></li>
13
 
14
			  #end
15
            </ol>
16
        </div>
17
    </div>
18
    <div class="col-lg-12">
19
        <table class="table table-border table-condensed table-bordered" id="fofokyctable" style="width:100%">
20
 
21
            <thead class="row kyctable" style="background:#F5F5F5;">
22
 
23
            <tr style="color:black;">
24
                <th>Id</th>
25
                <th>First Name</th>
26
                <th>Middle Name</th>
27
	            <th>Last Name</th>
28
	            <th>DOB</th>
29
	            <th>Gender</th>
30
	            <th>Marital Status</th>
31
 
32
		        <th>Email</th>
33
		        <th>Mobile</th>
34
		        <th>Pan no</th>
35
		        <th>Pan Doc</th>
36
		        <th>Poa No</th>
37
		        <th>Poa Type</th>
38
		        <th>Poa Front Doc</th>      
39
		        <th>Poa Back Doc</th>      
40
		        <th>Address1</th> 
41
		        <th>Address2</th>
42
		        <th>Address3</th>
43
                <th>City</th>
44
                <th>State</th>
45
                <th>Pincode</th>
46
		        <th>Action</th>
47
 
48
		    </tr>
49
            </thead>
50
            <tbody>
51
 
52
 
53
           #foreach($fofoKyc in $fofoKycs)
54
 
55
 
56
              <tr  class="hold-onboarding">
57
                   #parse("fofo-kyc-row.vm")
58
 
59
                </tr>
60
 
61
            #end
62
 
63
 
64
 
65
            </tbody>
66
 
67
        </table>
68
    </div>
69
 
70
 
71
 
72
</section>
73
 
74
 
75
<script type="text/javascript">
76
    var dtable ;
77
    $(document).ready(function () {
78
      dtable = $('#fofokyctable').DataTable({
79
             "scrollX": true,
80
             "scrollY": "518px",
81
              scrollCollapse: true,
82
             "fixedHeader": true,
83
             "order": [[ 0, "desc" ]],
84
		    fixedColumns:   {
85
		        leftColumns: 1
86
		    }
87
 
88
     });   
89
 
90
 
91
 
92
 
93
  });
94
 
95
 
96
 
97
</script>