Subversion Repositories SmartDukaan

Rev

Rev 31020 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
30859 tejbeer 1
 
2
<script type="text/javascript">
3
 
4
    $(document).ready(function () {
5
 
6
 
7
 
8
      var dtable = $('#sanctiontable').DataTable({
9
             "scrollX": true,
10
             "scrollY": "518px",
11
              scrollCollapse: true,
12
             "fixedHeader": true,
13
             "order": [[ 0, "desc" ]],
14
             fixedColumns:   {
15
             leftColumns: 3
16
        },
17
       });
18
 
19
    });
20
 
21
 
22
 
23
 
24
 
25
</script>
26
 
27
 
28
 
29
<section class="wrapper">
30
	<div class="row">
31
		<div class="col-lg-12">
32
			<h3 class="page-header"><i class="icon_document_alt"></i>Sanction Request</h3>
33
			<ol class="breadcrumb">
34
				<li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">Home</a></li>
35
				<li><i class="icon_document_alt"></i>SD Credit</li>	
36
 
37
			</ol>
38
		</div>
39
	</div>
40
 
41
	    <div class="col-lg-12">
42
        <table class="table table-border table-condensed table-bordered" id="sanctiontable" style="width:100%">
43
 
44
            <thead class="row htable" style="background:#F5F5F5;">
45
 
46
            <tr style="color:black;">
47
                <th>Id</th>
48
                <th>Partner Id</th>
49
                <th>Code</th>
50
                <th>Partner Name</th>
51
                <th>limit</th>
52
                <th>Available Limit</th>
53
                <th>Interest</th>
54
                <th>Credit Duration</th>
55
                <th>Risk</th>     
56
                <th>Short Investment</th>
57
                <th>Wallet Amount</th>
58
                <th>Requested Amount</th>
59
                <th>Approval Amount</th>
60
                <th>Free days</th>
61
                <th>Status</th>
62
                <th>Action</th>
63
	        </tr>
64
            </thead>
65
            <tbody>
66
                #foreach($sanctionRequest in $sanctionRequests)
67
 
68
 
69
                 <tr>
70
                   #parse("sanction-request-row.vm")
71
 
72
                </tr>
73
 
74
                #end
75
 
76
            </tbody>
77
 
78
        </table>
79
    </div>
80
</section>