Subversion Repositories SmartDukaan

Rev

Rev 28901 | 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>
28932 manish 27
                <th>Training Planed</th>
28847 manish 28
                <th>Date Completed</th>
29
                <th>Training Complete</th>
30
            </tr>
31
            </thead>
32
            <tbody>
33
                #foreach($pob in $partnerOnBoardingPendings )
28901 manish 34
                #if($pob.getHoldTimestamp())
35
                <tr class="hold-training">
28847 manish 36
                   #parse("partner-dashboard-training-index.vm")
37
 
38
                </tr>
28901 manish 39
                #else
40
                 <tr>
41
                   #parse("partner-dashboard-training-index.vm")
42
 
43
                </tr>
28847 manish 44
                #end
28901 manish 45
 
46
                #end
28847 manish 47
 
48
            </tbody>
49
 
50
        </table>
51
    </div>
52
</section>
53
 
54
 
55
<script type="text/javascript">
56
 
57
    $(document).ready(function () {
58
 
59
 
60
 
61
      var dtable = $('#partnerDashboardTraining').DataTable({
62
             "scrollX": true,
63
            "scrollY": "518px",
64
            scrollCollapse: true,
65
              "fixedHeader": true,
66
 
67
        fixedColumns:   {
68
            leftColumns: 2
69
        },
70
 
71
     });   
72
 
73
 
74
    });
75
 
76
 
77
</script>
78
 
79
 
80
<style>
28901 manish 81
.hold-training td{
82
 
83
background-color: crimson !important;
84
 
85
}
28847 manish 86
</style>