Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
29104 manish 1
<link href="https://cdn.datatables.net/fixedcolumns/3.3.0/css/fixedColumns.bootstrap.css" rel="stylesheet"/>
2
 
3
<section class="wrapper">
4
    <div class="row">
5
        <div class="col-lg-12">
6
            <h3 class="page-header"><i class="icon_document_alt"></i>ONBOARDING LEGAL</h3>
7
            <ol class="breadcrumb">
8
                <li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">Home</a></li>
9
                <li><i class="icon_document_alt"></i>Onboarding Legal</li>
10
            </ol>
11
        </div>
12
    </div>
13
    <div class="col-lg-12">
14
        <table class="table table-border table-condensed table-bordered" id="onboardingLegal" style="width:100%">
15
 
16
            <thead class="row htable" style="background:#F5F5F5;">
17
 
18
            <tr style="color:black;">
19
                   <th>Id</th>
20
                 <th>Outlet Name(SM)</th>
21
                 <th>Aadhaar(legal)</th>
22
                <th>pan(legal)</th>
23
                <th>GST(legal)</th>
24
                <th>Cancel cheque(legal)</th>
25
                <th>Rent agreement/Owner ship proof(legal)</th>
26
                <th>LOI(legal)</th>
27
                <th>Doc Compl</th>    
28
                <th>Aniversary Date(legal)</th>
29
                <th>D.O.B(legal)</th>
30
                <th>Code(legal)</th>
31
                <th>Submit</th>     
32
            </tr>
33
            </thead>
34
            <tbody>
35
                #foreach($pob in $pobLegals )
36
 
37
               #if($pob.getHoldTimestamp())
38
                <tr class="legal-hold" >
39
                   #parse("partner-onboarding-legal-row-index.vm")
40
 
41
                </tr>
42
 
43
                #else
44
                <tr >
45
                   #parse("partner-onboarding-legal-row-index.vm")
46
 
47
                </tr>
48
                #end
49
 
50
                #end
51
 
52
            </tbody>
53
 
54
        </table>
55
    </div>
56
</section>
57
 
58
 
59
<script type="text/javascript">
60
 
61
    $(document).ready(function () {
62
 
63
 
64
 
65
      var dtable = $('#onboardingLegal').DataTable({
66
             "scrollX": true,
67
            "scrollY": "518px",
68
            scrollCollapse: true,
69
              "fixedHeader": true,
29111 manish 70
             "order": [[ 0, "desc" ]],
29104 manish 71
        fixedColumns:   {
72
            leftColumns: 2
73
        }, 
29111 manish 74
 
75
        "columnDefs": [
76
                   { "targets": 1, "orderDataType":  "dom-text", "type":"string" },
77
                   { "targets": 8, "orderDataType": "dom-text", "type": "string" },
78
                  { "targets": 9, "orderDataType": "date-dd-mmm-yyyy", "type": "string" },
79
                   { "targets": 10, "orderDataType": "date-dd-mmm-yyyy", "type":"string"},
80
 
81
                   { "targets": 11, "orderDataType":  "dom-text", "type":"string" }
82
 
83
                        ],
29104 manish 84
 
85
     });   
86
 
87
 
88
    });
89
 
90
 
91
</script>
92
 
93
<style>
94
  .legal-hold td{
95
 
96
background-color: crimson !important;
97
 
98
   }
99
   </style>