-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
pickers.html
707 lines (677 loc) · 24.3 KB
/
pickers.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
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
<!DOCTYPE html>
<html lang="en">
<head>
{{> head }}
</head>
<body>
{{> navbar }}
<main>
{{> intro}}
<div class="container">
<div class="row">
<div class="col s12 m8 offset-m1 xl7 offset-xl1">
<div id="date-picker" class="section scrollspy">
<h3 class="header">Date Picker</h3>
<p>The datepicker allows users to select a date from an interactive calendar.</p>
<div class="input-field">
<input id="birthdate" type="text" class="datepicker" placeholder=" " />
<label for="birthdate">Birthdate</label>
</div>
<pre><code class="language-html"><xmp><input type="text" class="datepicker"></xmp></code></pre>
<div class="section">
<h5>Initialization</h5>
<pre><code class="language-javascript">
document.addEventListener('DOMContentLoaded', function() {
var elems = document.querySelectorAll('.datepicker');
var instances = M.Datepicker.init(elems, {
// specify options here
});
});
</code></pre>
</div>
<div class="section">
<h5>Options</h5>
<table class="striped">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th>Default</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td>autoClose</td>
<td>Boolean</td>
<td>false</td>
<td>Automatically close picker when date is selected.</td>
</tr>
<tr>
<td>format</td>
<td>String || Function</td>
<td>'mmm dd, yyyy'</td>
<td>The date output format for the input field value or a function taking the date and outputting the formatted date string.</td>
</tr>
<tr>
<td>parse</td>
<td>Function</td>
<td>null</td>
<td>Used to create date object from current input string.</td>
</tr>
<tr>
<td>defaultDate</td>
<td>Date</td>
<td>null</td>
<td>The initial date to view when first opened.</td>
</tr>
<tr>
<td>setDefaultDate</td>
<td>Boolean</td>
<td>false</td>
<td>Make the defaultDate the initial selected value.</td>
</tr>
<tr>
<td>disableWeekends</td>
<td>Boolean</td>
<td>false</td>
<td>Prevent selection of any date on the weekend.</td>
</tr>
<tr>
<td>disableDayFn</td>
<td>Function</td>
<td>null</td>
<td>Custom function to disable certain days.</td>
</tr>
<tr>
<td>firstDay</td>
<td>Number</td>
<td>0</td>
<td>First day of week (0: Sunday, 1: Monday etc).</td>
</tr>
<tr>
<td>minDate</td>
<td>Date</td>
<td>null</td>
<td>The earliest date that can be selected.</td>
</tr>
<tr>
<td>maxDate</td>
<td>Date</td>
<td>null</td>
<td>The latest date that can be selected.</td>
</tr>
<tr>
<td>yearRange</td>
<td>Number || Array</td>
<td>10</td>
<td>Number of years either side, or array of upper/lower range.</td>
</tr>
<tr>
<td>yearRangeReverse</td>
<td>Boolean</td>
<td>false</td>
<td>Sort year range in reverse order</td>
</tr>
<tr>
<td>isRTL</td>
<td>Boolean</td>
<td>false</td>
<td>Changes Datepicker to RTL.</td>
</tr>
<tr>
<td>showMonthAfterYear</td>
<td>Boolean</td>
<td>false</td>
<td>Show month after year in Datepicker title.</td>
</tr>
<tr>
<td>showDaysInNextAndPreviousMonths</td>
<td>Boolean</td>
<td>false</td>
<td>Render days of the calendar grid that fall in the next or previous month.</td>
</tr>
<tr>
<td>container</td>
<td>Element || String</td>
<td>null</td>
<td>Specify a DOM element OR selector for a DOM element to render the calendar in, by default it will be placed before the input.</td>
</tr>
<tr>
<td>showClearBtn</td>
<td>Boolean</td>
<td>false</td>
<td>Show the clear button in the datepicker.</td>
</tr>
<tr>
<td>i18n</td>
<td>Object</td>
<td>See i18n documentation.</td>
<td>Internationalization options.</td>
</tr>
<tr>
<td>events</td>
<td>Array</td>
<td>[]</td>
<td>An array of string returned by `Date.toDateString()`, indicating there are events in the specified days.</td>
</tr>
<tr>
<td>onSelect</td>
<td>Function</td>
<td>null</td>
<td>Callback function when date is selected, first parameter is the newly selected date.</td>
</tr>
<tr>
<td>onOpen</td>
<td>Function</td>
<td>null</td>
<td>Callback function when Datepicker is opened.</td>
</tr>
<tr>
<td>onClose</td>
<td>Function</td>
<td>null</td>
<td>Callback function when Datepicker is closed.</td>
</tr>
<tr>
<td>onDraw</td>
<td>Function</td>
<td>null</td>
<td>Callback function when Datepicker HTML is refreshed.</td>
</tr>
</tbody>
</table>
</div>
<div class="section">
<h5>Date format options</h5>
<p>Use these in the format option to customize your date string.</p>
<table class="striped">
<thead>
<tr>
<th>Key</th>
<th>Description</th>
<th>Output</th>
</tr>
</thead>
<tbody>
<tr>
<td>d</td>
<td>Date of the month.</td>
<td>1-31</td>
</tr>
<tr>
<td>dd</td>
<td>Date of the month (2 digits).</td>
<td>01-31</td>
</tr>
<tr>
<td>ddd</td>
<td>Day of the week in short form set by the i18n option.</td>
<td>Sun-Sat</td>
</tr>
<tr>
<td>dddd</td>
<td>Day of the week in full form set by the i18n option.</td>
<td>Sunday-Saturday</td>
</tr>
<tr>
<td>m</td>
<td>Month of the year.</td>
<td>1-12</td>
</tr>
<tr>
<td>mm</td>
<td>Month of the year (2 digits).</td>
<td>01-12</td>
</tr>
<tr>
<td>mmm</td>
<td>Month of the year in short form set by the i18n option.</td>
<td>Jan-Dec</td>
</tr>
<tr>
<td>mmmm</td>
<td>Month of the year in full form set by the i18n option.</td>
<td>January-December</td>
</tr>
<tr>
<td>yy</td>
<td>2-digit year.</td>
<td>17</td>
</tr>
<tr>
<td>yyyy</td>
<td>4-digit year.</td>
<td>2017</td>
</tr>
</tbody>
</table>
</div>
<div class="section">
<h5>Datepicker Internationalization options</h5>
<p>Use these in the i18n option to localize the datepicker.</p>
<table class="striped">
<thead>
<tr>
<th>Key</th>
<th>Text</th>
</tr>
</thead>
<tbody>
<tr>
<td>cancel</td>
<td>'Cancel'</td>
</tr>
<tr>
<td>clear</td>
<td>'Clear'</td>
</tr>
<tr>
<td>done</td>
<td>'Ok'</td>
</tr>
<tr>
<td>previousMonth</td>
<td>'‹'</td>
</tr>
<tr>
<td>nextMonth</td>
<td>'›'</td>
</tr>
<tr>
<td>months</td>
<td>
<pre>
[
'January',
'February',
'March',
'April',
'May',
'June',
'July',
'August',
'September',
'October',
'November',
'December'
]
</pre
>
</td>
</tr>
<tr>
<td>monthsShort</td>
<td>
<pre>
[
'Jan',
'Feb',
'Mar',
'Apr',
'May',
'Jun',
'Jul',
'Aug',
'Sep',
'Oct',
'Nov',
'Dec'
]
</pre
>
</td>
</tr>
<tr>
<td>weekdays</td>
<td>
<pre>
[
'Sunday',
'Monday',
'Tuesday',
'Wednesday',
'Thursday',
'Friday',
'Saturday'
]
</pre
>
</td>
</tr>
<tr>
<td>weekdaysShort</td>
<td>
<pre>
[
'Sun',
'Mon',
'Tue',
'Wed',
'Thu',
'Fri',
'Sat'
]
</pre
>
</td>
</tr>
<tr>
<td>weekdaysAbbrev</td>
<td>['S','M','T','W','T','F','S']</td>
</tr>
</tbody>
</table>
</div>
<div class="section">
<h5>Properties</h5>
<table class="striped">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td>el</td>
<td>Element</td>
<td>The input element the plugin was initialized with.</td>
</tr>
<tr>
<td>options</td>
<td>Object</td>
<td>The options the instance was initialized with.</td>
</tr>
<tr>
<td>isOpen</td>
<td>Boolean</td>
<td>If the picker is open.</td>
</tr>
<tr>
<td>date</td>
<td>Date</td>
<td>The selected Date.</td>
</tr>
</tbody>
</table>
</div>
<div class="section">
<h5>Methods</h5>
<blockquote>
<p>All the methods are called on the plugin instance. You can get the plugin instance like this:</p>
<pre><code class="language-javascript col s12">
var instance = M.Datepicker.getInstance(elem);
</code></pre>
</blockquote>
<h5 class="method-header">.open();</h5>
<p>Open datepicker</p>
<pre><code class="language-javascript col s12">
instance.open();
</code></pre>
<h5 class="method-header">.close();</h5>
<p>Close datepicker</p>
<pre><code class="language-javascript col s12">
instance.close();
</code></pre>
<h5 class="method-header">.toString();</h5>
<p>Gets a string representation of the selected date</p>
<pre><code class="language-javascript col s12">
instance.toString();
</code></pre>
<h5 class="method-header">.setDate();</h5>
<p>Set a date on the datepicker</p>
<h6>Arguments</h6>
<p><b>Date (optional):</b> Date to set on the datepicker.</p>
<pre><code class="language-javascript col s12">
instance.setDate(new Date());
</code></pre>
<h5 class="method-header">.gotoDate();</h5>
<p>Change date view to a specific date on the datepicker</p>
<h6>Arguments</h6>
<p><b>Date:</b> Date to show on the datepicker.</p>
<pre><code class="language-javascript col s12">
instance.gotoDate(new Date());
</code></pre>
<h5 class="method-header">.destroy();</h5>
<p>Destroy plugin instance and teardown</p>
<pre><code class="language-javascript col s12">
instance.destroy();
</code></pre>
</div>
</div>
<div id="time-picker" class="section scrollspy">
<h3 class="header">Time Picker</h3>
<p>The timepicker allows users to select a date from an interactive clock.</p>
<div class="input-field">
<input id="lunchtime" type="text" class="timepicker" />
<label for="lunchtime">Lunchtime</label>
</div>
<pre><code class="language-html">
<input type="text" class="timepicker">
</code></pre>
<div class="section">
<h5>Initialization</h5>
<pre><code class="language-javascript">
document.addEventListener('DOMContentLoaded', function() {
var elems = document.querySelectorAll('.timepicker');
var instances = M.Timepicker.init(elems, {
// specify options here
});
});
</code></pre>
</div>
<div class="section">
<h5>Options</h5>
<table class="striped">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th>Default</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td>duration</td>
<td>Number</td>
<td>350</td>
<td>Duration of the transition from/to the hours/minutes view.</td>
</tr>
<tr>
<td>container</td>
<td>Element || String</td>
<td>null</td>
<td>Specify a DOM element OR selector for a DOM element to render the time picker in, by default it will be placed before the input.</td>
</tr>
<tr>
<td>showClearBtn</td>
<td>Boolean</td>
<td>false</td>
<td>Show the clear button in the Timepicker.</td>
</tr>
<tr>
<td>defaultTime</td>
<td>String</td>
<td>'now'</td>
<td>Default time to set on the timepicker 'now' or '13:14'</td>
</tr>
<tr>
<td>fromNow</td>
<td>Number</td>
<td>0</td>
<td>Millisecond offset from the defaultTime.</td>
</tr>
<tr>
<td>i18n</td>
<td>Object</td>
<td>See i18n documentation.</td>
<td>Internationalization options.</td>
</tr>
<tr>
<td>autoClose</td>
<td>Boolean</td>
<td>false</td>
<td>Automatically close picker when minute is selected.</td>
</tr>
<tr>
<td>twelveHour</td>
<td>Boolean</td>
<td>true</td>
<td>Use 12 hour AM/PM clock instead of 24 hour clock.</td>
</tr>
<tr>
<td>vibrate</td>
<td>Boolean</td>
<td>true</td>
<td>Vibrate device when dragging clock hand.</td>
</tr>
<tr>
<td>onOpenStart</td>
<td>Function</td>
<td>null</td>
<td>Callback function called before modal is opened.</td>
</tr>
<tr>
<td>onOpenEnd</td>
<td>Function</td>
<td>null</td>
<td>Callback function called after modal is opened.</td>
</tr>
<tr>
<td>onCloseStart</td>
<td>Function</td>
<td>null</td>
<td>Callback function called before modal is closed.</td>
</tr>
<tr>
<td>onCloseEnd</td>
<td>Function</td>
<td>null</td>
<td>Callback function called after modal is closed.</td>
</tr>
<tr>
<td>onSelect</td>
<td>Function</td>
<td>null</td>
<td>Callback function when a time is selected, first parameter is the hour and the second is the minute.</td>
</tr>
</tbody>
</table>
</div>
<div class="section">
<h5>Timepicker Internationalization options</h5>
<p>Use these in the i18n option to localize the timepicker.</p>
<table class="striped">
<thead>
<tr>
<th>Key</th>
<th>Text</th>
</tr>
</thead>
<tbody>
<tr>
<td>cancel</td>
<td>'Cancel'</td>
</tr>
<tr>
<td>clear</td>
<td>'Clear'</td>
</tr>
<tr>
<td>done</td>
<td>'Ok'</td>
</tr>
</tbody>
</table>
</div>
<div class="section">
<h5>Properties</h5>
<table class="striped">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td>el</td>
<td>Element</td>
<td>The input element the plugin was initialized with.</td>
</tr>
<tr>
<td>options</td>
<td>Object</td>
<td>The options the instance was initialized with.</td>
</tr>
<tr>
<td>isOpen</td>
<td>Boolean</td>
<td>If the picker is open.</td>
</tr>
<tr>
<td>time</td>
<td>String</td>
<td>The selected time.</td>
</tr>
</tbody>
</table>
</div>
<div class="section">
<h5>Methods</h5>
<blockquote>
<p>All the methods are called on the plugin instance. You can get the plugin instance like this:</p>
<pre><code class="language-javascript col s12">
var instance = M.Timepicker.getInstance(elem);
</code></pre>
</blockquote>
<h5 class="method-header">.open();</h5>
<p>Open timepicker</p>
<pre><code class="language-javascript col s12">
instance.open();
</code></pre>
<h5 class="method-header">.close();</h5>
<p>Close timepicker</p>
<pre><code class="language-javascript col s12">
instance.close();
</code></pre>
<h5 class="method-header">.showView();</h5>
<p>Show hours or minutes view on timepicker</p>
<h6>Arguments</h6>
<p><b>String:</b> The name of the view you want to switch to, 'hours' or 'minutes'.</p>
<pre><code class="language-javascript col s12">
instance.showView('hours');
</code></pre>
<h5 class="method-header">.destroy();</h5>
<p>Destroy plugin instance and teardown</p>
<pre><code class="language-javascript col s12">
instance.destroy();
</code></pre>
</div>
</div>
</div>
<div class="col hide-on-small-only m3 xl3">
<div class="toc-wrapper">
<div style="height: 1px">
<ul class="section table-of-contents">
<li>
<a href="#date-picker">Date Picker</a>
</li>
<li>
<a href="#time-picker">Time Picker</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</main>
{{> footer }}
<script type="module" src="/src/main.ts"></script>
</body>
</html>