Subversion Repositories SmartDukaan

Rev

Rev 29794 | Rev 29886 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
29841 tejbeer 1
`<section class="wrapper">
29794 tejbeer 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
 
10
            </ol>
11
        </div>
12
    </div>
13
    <div class="col-lg-12">
14
        <table class="table table-border table-condensed table-bordered" id="legalkyctable" style="width:100%">
15
 
16
            <thead class="row kyctable" style="background:#F5F5F5;">
17
 
18
            <tr style="color:black;">
19
                <th>Code</th>
29841 tejbeer 20
                <th>Business Name</th>
29794 tejbeer 21
                <th>Id</th>
22
                <th>Business Type</th>
23
                <th>First Name</th>
24
                <th>Middle Name</th>
25
	            <th>Last Name</th>
26
	            <th>Father Name</th>
27
	            <th>DOB</th>
28
	            <th>Gender</th>
29
	            <th>Marital Status</th>
30
		        <th>Email</th>
31
		        <th>Mobile</th>
32
		        <th>Pan no</th>
33
		        <th>Pan Doc</th>
34
		        <th>Poa No</th>
35
		        <th>Poa Type</th>
36
		        <th>Poa Front Doc</th>      
37
		        <th>Poa Back Doc</th>      
38
		        <th>Address1</th> 
39
		        <th>Address2</th>
40
		        <th>Address3</th>
41
                <th>City</th>
42
                <th>State</th>
43
                <th>Pincode</th>
44
		        <th>Action</th>
45
 
46
		    </tr>
47
            </thead>
48
            <tbody>
49
 
50
 
51
           #foreach($fofoKyc in $fofoKycs)
52
 
53
 
54
              <tr>
55
                   #parse("legal-kyc-row.vm")
56
 
57
                </tr>
58
 
59
            #end
60
 
61
 
62
 
63
            </tbody>
64
 
65
        </table>
66
    </div>
67
 
68
 
69
 
70
</section>
71
 
72
 
73
<script type="text/javascript">
74
    var dtable ;
75
    $(document).ready(function () {
76
      dtable = $('#legalkyctable').DataTable({
77
             "scrollX": true,
78
             "scrollY": "518px",
79
              scrollCollapse: true,
80
             "fixedHeader": true,
81
             "order": [[ 0, "desc" ]],
82
		    fixedColumns:   {
83
		        leftColumns: 1
84
		    }
85
 
86
     });   
87
 
88
 
89
 
90
 
91
  });
92
 
93
 
94
 
95
</script>