Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
24680 govind 1
<script>
2
$(document).ready(function() {
3
  $('#inactiveStore').DataTable(
4
  {
5
    "bPaginate": true,
6
    "bLengthChange": true,
7
    "bFilter": true,
8
    "bInfo": false,
9
    "bAutoWidth": false }
10
  );
11
 
12
} );
13
</script>
14
<section class="wrapper">            
15
	<div class="row">
16
		<div class="col-lg-12">
17
			<h3 class="page-header"><i class="icon_document_alt"></i>Retailer</h3>
18
			<ol class="breadcrumb">
19
				<li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">Home</a></li>
20
				<li><i class="icon_document_alt"></i>INACTIVE-STORE</li>						  	
21
			</ol>
22
		</div>
23
	</div>
24
  	<div id="inactive-store-table">
25
		<div class="row">
26
	    	<div class="col-lg-12">
27
 
28
	    		<table class="table table-bordered" id="inactiveStore">	
29
	    		<thead>
30
	    					<th>PartnerId</th>
31
	    					<th>Store Name</th>
32
	    					<th>Email</th>
33
	    					<th>Store Code</th>
34
	    				</tr>
35
	    				</thead>
36
	    				<tbody>
37
	    				#if(!$fofoStores.isEmpty())
38
			    			#foreach( $inactivefofoStore in $inActiveFofoStores)
39
			    				<tr>
40
			    					<td>$inactivefofoStore.getId()</td>
41
			    					<td>$customRetailers.get($inactivefofoStore.getId()).getBusinessName()</td>
42
			    					<td>$customRetailers.get($inactivefofoStore.getId()).getEmail()</td>
43
			    					<td>$inactivefofoStore.getCode()</td>
44
			    				</tr>
45
			    			#end
46
		    			#else
47
		    				<tr>
48
		    					<td colspan="6" style="text-align:center;">NO MATCHING DATA FOUND FOR CRITERIA</td>
49
		    				</tr>
50
		    			#end
51
	    			</tbody>
52
	    		</table>
53
	    	</div>
54
	    </div>
55
    </div>
56
</section>