Subversion Repositories SmartDukaan

Rev

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">
30260 tejbeer 4
            <h3 class="page-header">ADD PARTNER KYC NEW</i></h3>
29794 tejbeer 5
            <ol class="breadcrumb">
6
                <li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">Home</a></li>
30260 tejbeer 7
                <li><i class="icon_document_alt"></i>ADD PARTNER KYC NEW</li>
29794 tejbeer 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>
29886 tejbeer 22
                <th>Status</th>
29794 tejbeer 23
                <th>Business Type</th>
24
                <th>First Name</th>
25
                <th>Middle Name</th>
26
	            <th>Last Name</th>
27
	            <th>Father Name</th>
28
	            <th>DOB</th>
29
	            <th>Gender</th>
30
	            <th>Marital Status</th>
31
		        <th>Email</th>
32
		        <th>Mobile</th>
33
		        <th>Pan no</th>
34
		        <th>Pan Doc</th>
35
		        <th>Poa No</th>
36
		        <th>Poa Type</th>
37
		        <th>Poa Front Doc</th>      
38
		        <th>Poa Back Doc</th>      
39
		        <th>Address1</th> 
40
		        <th>Address2</th>
41
		        <th>Address3</th>
42
                <th>City</th>
43
                <th>State</th>
44
                <th>Pincode</th>
45
		        <th>Action</th>
46
 
47
		    </tr>
48
            </thead>
49
            <tbody>
50
 
51
 
52
           #foreach($fofoKyc in $fofoKycs)
53
 
54
 
55
              <tr>
56
                   #parse("legal-kyc-row.vm")
57
 
58
                </tr>
59
 
60
            #end
61
 
62
 
63
 
64
            </tbody>
65
 
66
        </table>
67
    </div>
68
 
69
 
70
 
71
</section>
72
 
73
 
74
<script type="text/javascript">
75
    var dtable ;
76
    $(document).ready(function () {
77
      dtable = $('#legalkyctable').DataTable({
78
             "scrollX": true,
79
             "scrollY": "518px",
80
              scrollCollapse: true,
81
             "fixedHeader": true,
82
             "order": [[ 0, "desc" ]],
83
		    fixedColumns:   {
84
		        leftColumns: 1
85
		    }
86
 
87
     });   
88
 
89
 
90
 
91
 
92
  });
93
 
94
 
95
 
96
</script>