Subversion Repositories SmartDukaan

Rev

Rev 29774 | Details | Compare with Previous | 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">
35280 amit 4
            <h3 class="page-header">Add KYC</h3>
29763 tejbeer 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>
29774 tejbeer 28
	            <th>Father Name</th>
29763 tejbeer 29
	            <th>DOB</th>
30
	            <th>Gender</th>
31
	            <th>Marital Status</th>
32
 
33
		        <th>Email</th>
34
		        <th>Mobile</th>
35
		        <th>Pan no</th>
36
		        <th>Pan Doc</th>
37
		        <th>Poa No</th>
38
		        <th>Poa Type</th>
39
		        <th>Poa Front Doc</th>      
40
		        <th>Poa Back Doc</th>      
41
		        <th>Address1</th> 
42
		        <th>Address2</th>
43
		        <th>Address3</th>
44
                <th>City</th>
45
                <th>State</th>
46
                <th>Pincode</th>
47
		        <th>Action</th>
48
 
49
		    </tr>
50
            </thead>
51
            <tbody>
52
 
53
 
54
           #foreach($fofoKyc in $fofoKycs)
55
 
56
 
57
              <tr  class="hold-onboarding">
58
                   #parse("fofo-kyc-row.vm")
59
 
60
                </tr>
61
 
62
            #end
63
 
64
 
65
 
66
            </tbody>
67
 
68
        </table>
69
    </div>
70
 
71
 
72
 
73
</section>
74
 
75
 
76
<script type="text/javascript">
77
    var dtable ;
78
    $(document).ready(function () {
79
      dtable = $('#fofokyctable').DataTable({
80
             "scrollX": true,
81
             "scrollY": "518px",
82
              scrollCollapse: true,
83
             "fixedHeader": true,
84
             "order": [[ 0, "desc" ]],
85
		    fixedColumns:   {
86
		        leftColumns: 1
87
		    }
88
 
89
     });   
90
 
91
 
92
 
93
 
94
  });
95
 
96
 
97
 
98
</script>