Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
23026 ashik.ali 1
<style>
2
.modal-content{
3
		background : white;
4
	}
5
	.modelHeaderCustom{
6
		font-size:14px;
7
		font-weight:bold;
8
	}
9
 
10
	.form-group{
11
		border-bottom: 1px solid #eff2f7;
12
    	padding-bottom: 15px;
13
    	margin-bottom: 15px;
14
	}
15
 
16
</style>
17
 
18
<script type="text/javascript">
19
 
20
	$(function() {
21
    	$('input[name="startEndDateTime"]').daterangepicker({
23884 amit.gupta 22
    		"startDate": moment(),
23
    		"endDate":moment(),
23026 ashik.ali 24
    		"autoUpdateInput": true,
25
    		locale: {
23884 amit.gupta 26
    			format: 'DD/MM/YYYY'
27
  			}
23026 ashik.ali 28
	    });
29
 
30
	});
31
 
32
</script>
33
 
34
<section class="wrapper">
35
	<div class="row">
36
		<div class="col-lg-12">
37
			<h3 class="page-header"><i class="icon_document_alt"></i>SCHEME</h3>
38
			<ol class="breadcrumb">
39
				<li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">Home</a></li>
40
				<li><i class="icon_document_alt"></i>EXPORT</li>						  	
41
			</ol>
42
		</div>
43
	</div>
44
	<div id="customer-details" style="background:white;background-color:white;padding:10px;">
45
 
46
		<div class = "row">
47
			<div class="col-lg-2 form-group">
48
				<label for="usr">Start - End Date Time</label>
49
			</div>
50
 
51
			<div class="col-lg-3 form-group">
52
				<input placeholder="Start End Date Time" id="startEndDateTime" name="startEndDateTime" type="text" value="" class="form-control input-sm">
53
			</div>
54
 
55
			<div class="col-xs-3" style="float:right;">
56
				<button class="btn btn-primary" style="width:100%;border-radius:0px;" id="schemesDownloadButton" onclick="schemesDownload()">Download Schemes</button>	
57
			</div>
58
 
59
		</div>
60
 
61
	</div>
62
</section>