Subversion Repositories SmartDukaan

Rev

Rev 23884 | Go to most recent revision | Details | 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({
22
    		"timePicker": true,
23
    		"timePicker24Hour": true,
24
    		"timePickerSeconds": true,
25
    		"startDate": "01/01/2017",
26
    		"endDate":"01/01/2018",
27
    		"autoUpdateInput": true,
28
    		locale: {
29
    			format: 'DD/MM/YYYY HH:mm:ss'
30
  			},
31
	    });
32
 
33
	});
34
 
35
</script>
36
 
37
<section class="wrapper">
38
	<div class="row">
39
		<div class="col-lg-12">
40
			<h3 class="page-header"><i class="icon_document_alt"></i>SCHEME</h3>
41
			<ol class="breadcrumb">
42
				<li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">Home</a></li>
43
				<li><i class="icon_document_alt"></i>EXPORT</li>						  	
44
			</ol>
45
		</div>
46
	</div>
47
	<div id="customer-details" style="background:white;background-color:white;padding:10px;">
48
 
49
		<div class = "row">
50
			<div class="col-lg-2 form-group">
51
				<label for="usr">Start - End Date Time</label>
52
			</div>
53
 
54
			<div class="col-lg-3 form-group">
55
				<input placeholder="Start End Date Time" id="startEndDateTime" name="startEndDateTime" type="text" value="" class="form-control input-sm">
56
			</div>
57
 
58
			<div class="col-xs-3" style="float:right;">
59
				<button class="btn btn-primary" style="width:100%;border-radius:0px;" id="schemesDownloadButton" onclick="schemesDownload()">Download Schemes</button>	
60
			</div>
61
 
62
		</div>
63
 
64
	</div>
65
</section>