blob: f2e328e3abc891d6f7c81b31822202629cdd1633 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
<ion-view view-title="Filter Events">
<ion-content>
<label class="item item-input">
<span class="input-label">From Date:</span>
<input type="date" ng-model="$root.fromDate">
</label>
<label class="item item-input">
<span class="input-label">From Time:</span>
<input type="time" ng-model="$root.fromTime">
</label>
<label class="item item-input">
<span class="input-label">To Date</span>
<input type="date" ng-model="$root.toDate">
</label>
<label class="item item-input">
<span class="input-label">To Time</span>
<input type="time" ng-model="$root.toTime">
</label>
<br/>
<center>
<button class="button"
ng-click="saveFilters();" > Save
</button>
<button class="button"
ng-click="removeFilters();" > Reset
</button>
</center>
</ion-content>
</ion-view>
|