Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
29222 tejbeer 1
<div class="col-lg-12">
2
				 <table id="providertat" class="table table-striped table-advance table-hover" style="width:100%">
3
				 <thead>
4
	    				<tr>
5
	    				<th>Provider Id</th>
6
	    				<th>Provider Name</th>
7
	    				<th>Warehouse Name</th>
8
	    				<th>Pincode</th>
9
	    			    <th>Delivery Time</th>
10
 
11
 
12
	    				</tr>
13
				 </thead>
14
	    			<tbody>
15
	    			    #foreach($pt in $providerTat)
16
	    				<tr>
17
	    	 		     <td>$pt.getProviderId()</td>
29230 tejbeer 18
	    	 		     <td>$providerIdMap.get($pt.getProviderId()).getName()</td>
29222 tejbeer 19
 
20
	    	 		     <td>$warehouseMap.get($pt.getWarehouseLocation())</td>
21
	    	 		     <td>$pt.getDestinationPin()</td>
22
	    	 		      <td>$pt.getDeliveryTime()</td>
23
 
24
	    				</tr>
25
	    				#end
26
	    		    </tbody>
27
	    		</table>
28
	</div>
29
 
30
<script>	
31
     $(document).ready(function() {
32
          var table = $('#providertat').DataTable( {
33
		   "scrollX": true,
34
		        orderCellsTop: true,
35
		        fixedHeader: true
36
		    });
37
		});	   
38
 
39
</script>
40