Subversion Repositories SmartDukaan

Rev

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