Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
28847 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>Partner Verification</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>Partner Verification</li>
10
            </ol>
11
        </div>
12
    </div>
13
    <div class="col-lg-12">
14
        <table class="table table-border table-condensed table-bordered" id="partnerVerification" 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</th>
28882 manish 21
                 <th>Phone Number</th>
28847 manish 22
                <th>City</th>
28882 manish 23
 
28847 manish 24
                <th>Brand Fees</th>
25
                <th>Brand Fees Recived</th>
26
                <th>NOC From GT </th>
27
                <th>RBM</th>
28
                <th>Comment</th>
29
                <th>Approval</th>
30
                <th>Veri Done</th>
31
            </tr>
32
            </thead>
33
            <tbody>
34
                #foreach($pob in $partnerOnBoardingPendings )
35
                <tr>
36
                   #parse("partner-onboarding-verification-index.vm")
37
 
38
                </tr>
39
                #end
40
 
41
            </tbody>
42
 
43
        </table>
44
    </div>
45
</section>
46
 
47
 
48
<script type="text/javascript">
49
 
50
    $(document).ready(function () {
51
 
52
 
53
 
54
      var dtable = $('#partnerVerification').DataTable({
55
             "scrollX": true,
56
            "scrollY": "518px",
57
            scrollCollapse: true,
58
              "fixedHeader": true,
59
 
60
        fixedColumns:   {
61
            leftColumns: 2
62
        },
63
 
64
     });   
65
 
66
 
67
    });
68
 
69
 
70
</script>
71
 
72
 
73
<style>
74
</style>