-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathindex.html
208 lines (191 loc) · 7.43 KB
/
index.html
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
<!DOCTYPE html>
<html>
<head>
<title>pat-date-picker demo page</title>
<meta charset="utf-8">
<link rel="stylesheet" href="/style/common.css" />
<script src="/bundle.min.js"></script>
<style>
time.output-field {
min-width: 6em;
height: 2em;
margin: 0 0.5em;
padding: 0 0.5em;
background: lightgrey;
box-sizing: border-box;
display: inline-block;
}
time.output-field:not(.disabled) {
cursor: pointer;
}
.cancel-button {
display: inline-block;
width: 1em;
height: 1em;
margin-left: 0.2em;
background-color: red;
}
</style>
</head>
<body>
<form action="">
<fieldset class="vertical">
<label
>Falling back to the browser's HTML5 picker if available.
<input
class="pat-date-picker"
type="date"
data-pat-date-picker="behavior: native"
/> </label
><br />
<label
>Enforcing the styled non-HTML5 picker universally.
<input class="pat-date-picker" type="date" /> </label
><br />
<label
>Using the JavaScript date picker together with an input field which can be edited with the keyboard directly.
<input
class="pat-date-picker"
type="date"
data-pat-date-picker="behavior: keyboard"
/> </label
><br />
<label
>Default value
<input
class="pat-date-picker"
type="date"
value="2015-01-01"
required
/> </label
><br />
<label
>First day on Monday
<input
class="pat-date-picker"
type="date"
value="2015-01-01"
data-pat-date-picker="first-day: 1"
required
/> </label
><br />
<label>Not required, allows for deletion of value.
<input
class="pat-date-picker"
type="date"
value="2021-03-29"
/>
</label>
<br />
<label>Placeholder support.
<input
class="pat-date-picker"
type="date"
placeholder="YYYY-MM-DD"
/>
</label>
<br />
<label
>Show the week number.
<input
class="pat-date-picker"
data-pat-date-picker="week-numbers: show;"
type="date"
/> </label
><br />
<label
>Specifying the "min" and "max" attributes.
<input
class="pat-date-picker demo-minmax"
min="2015-01-01"
max="2015-12-31"
type="date"
/>
<small>+/- 2 months from today</small>
</label>
<br />
<script charset="utf-8">
var date_arithmetics = function (addsub) {
return new Date(
new Date().setMonth(
new Date().getMonth() + addsub
)
).toISOString().split("T")[0];
}
var input_minmax = document.querySelector(".demo-minmax");
input_minmax.setAttribute("min", date_arithmetics(-2));
input_minmax.setAttribute("max", date_arithmetics(+2));
</script>
<label
>Formatted
<input
class="pat-date-picker"
type="date"
value="2015-01-01"
data-pat-date-picker="output-format: MMMM Do YYYY"
/>
<small>hide <input> and show formatted <time>. Still use iso format for <input>.</small>
</label>
<br />
<label
>Multilingual support with German translations
<input
class="pat-date-picker"
data-pat-date-picker="i18n: ./i18n.json; output-format: Do MMMM YYYY; locale: de"
type="date"
/>
</label>
<br />
<label>Start
<input name="start" class="pat-date-picker" type="date"/>
</label>
<label>End after start, automatically updated.
<input name="end" class="pat-date-picker" type="date" data-pat-date-picker="after: input[name=start]; offset-days: 2;"/>
</label>
<br />
<label>Start, formatted
<input name="startf" class="pat-date-picker" type="date"
data-pat-date-picker="output-format: MMMM Do YYYY"
/>
</label>
<label>End after start, automatically updated and formatted.
<input name="endf" class="pat-date-picker" type="date"
data-pat-date-picker="after: input[name=startf]; offset-days: 2; output-format: MMMM Do YYYY"
/>
</label>
<br />
<hr />
<label>Disabled input
<input name="disabled_date" class="pat-date-picker" type="date"
data-pat-date-picker="output-format: MMMM Do YYYY"
value="2021-04-21"
disabled
/>
</label>
<br />
<hr />
<div
class="pat-clone"
data-pat-clone="template: #clone-template; trigger-element: .clone-trigger; max: 5">
<fieldset id="clone-template" hidden>
<label>Copied field #{1}
<input
name="date-#{1}"
type="date"
class="pat-date-picker"
data-pat-date-picker="output-format: Do MMMM YYYY;"
placeholder="Completion date"
/>
</label>
<button type="button" class="remove-clone">
Remove
</button>
</fieldset>
</div>
<button type="button" class="clone-trigger">
Add an extra measure
</button>
</fieldset>
</form>
</body>
</html>