forked from flatpickr/flatpickr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
881 lines (696 loc) · 22.6 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
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
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
<!DOCTYPE html>
<html>
<head>
<title>flatpickr - lightweight datetimepicker & calendar</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta http-equiv="x-ua-compatible" content="ie=edge"/>
<link rel="stylesheet" type="text/css" href="assets/site.css">
<link rel="stylesheet" id=cal_style type="text/css" href="dist/flatpickr.min.css">
<link rel="icon" type="image/png" href="favicon.png">
</head>
<body>
<header class="hero" id=hero>
<div class='wrapper'>
<h1>flatpickr</h1>
<p class="desc">
A lightweight & powerful datetimepicker
</p>
<div>
<a title="Follow @chmln on GitHub" target="_blank" class="btn" href="https://github.com/chmln">
<i class="icon-github"></i>
<span>Follow</span>
</a>
<a title="Star chmln/flatpickr on GitHub" target="_blank" class="btn" href="https://github.com/chmln/flatpickr">
<i class="icon-star"></i>
<span>Star!</span>
</a>
<a class="btn" href="https://github.com/chmln/flatpickr/archive/gh-pages.zip">
<i class="icon-cloud-down"></i>
<span>Download</span>
</a>
</div>
</div>
</header>
<div class=flex>
<div class="c-l">
<div class='wrapper'>
<div class="example_wrapper" data-desc="Install" id=install>
<h3>Install</h3>
<p>
Node Package Manager:<br>
<code>npm install flatpickr</code>
</p>
<p>
Bower:<br>
<code>bower install flatpickr-calendar</code>
</p>
<p>Otherwise:<br>
<a class="btn" href="https://github.com/chmln/flatpickr/archive/gh-pages.zip">
<i class="icon-cloud-down"></i>
<span>Download</span>
</a>
</p>
<p class=nomargin>Then <code>require('flatpickr')</code>, use wiredep, or otherwise load the necessary files.</p>
<pre class='prettyprint lang-html' style='clear:both'>
<link rel="stylesheet" type="text/css" href="/path/to/flatpickr.css">
<script src="/path/to/flatpickr.js"></script>
</pre>
</div>
<div class="example_wrapper">
<h3>Syntax</h3>
<pre class='prettyprint lang-js'>
flatpickr('selector', [options]);
</pre>
</div>
<div class="example_wrapper" data-desc="A basic datepicker" id="basic">
<h3>Basics</h3>
<strong>A basic datepicker</strong>
<pre class='prettyprint lang-js'>flatpickr('#flatpickr-tryme')</pre>
<p>
<input id="flatpickr-tryme" placeholder="Try me..">
</p>
<strong>Multiple datetimepickers</strong>
<p>
The selector can be a class as well, turning multiple inputs/fields into calendars.
</p>
<pre class='prettyprint lang-js'>
flatpickr('.calendar')
</pre>
<pre class="prettyprint lang-html">
<input class=calendar placeholder="calendar 1">
<input class=calendar placeholder="calendar 2">
<input class=calendar placeholder="calendar 3">
</pre>
<p>
<input class=calendar placeholder="calendar 1">
</p>
<p>
<input class=calendar placeholder="calendar 2">
</p>
<p>
<input class=calendar placeholder="calendar 3">
</p>
</div>
<div class="example_wrapper" data-desc="Custom date/time formats" id="format">
<h3>Date Formatting</h3>
<p>Using <a href=#options>dateFormat</a></p>
<pre class='prettyprint lang-js'>
flatpickr('#yourSelector', { dateFormat: 'd-m-Y'});
flatpickr('#yourSelector', { dateFormat: 'm/d/Y'});
</pre>
<pre class='prettyprint lang-html'>
<input class=flatpickr data-dateFormat="l, F j, Y">
</pre>
<p>
<input id="dateFormat" placeholder="European Format ('d-m-Y')">
</p>
<p>
<input id="dateFormat-mdy" placeholder="American Format ('m/d/Y')">
</p>
<p>
<input class=flatpickr data-dateFormat="l, F j, Y" placeholder="Fancy Textual Format ('l, F j, Y')">
</p>
</div>
<div class="example_wrapper" data-desc="Date Limits (maxDate/minDate)" id="maxmindate">
<h3>Date Limits - minDate and maxDate</h3> The example below conveniently uses data-attributes for setting
<strong>minDate</strong> and <strong>maxDate</strong> <a href=#options>options</a>.
<pre class="prettyprint lang-html">
<input class=flatpickr data-mindate=today>
<input class=flatpickr data-mindate="2016-09-20">
<input class=flatpickr data-mindate="September 2, 2015">
<input class=flatpickr data-mindate=today data-maxdate='2016-8-20'>
</pre>
<p>
<input class=flatpickr data-mindate=today placeholder="minDate: today">
</p>
<p>
<input class=flatpickr data-mindate="2016-09-20" placeholder="minDate: '2016-09-20'">
</p>
<p>
<input class=flatpickr data-mindate="September 2, 2015" placeholder="minDate: new Date('September 2, 2015')">
</p>
<p>
<input class=flatpickr data-mindate=today data-maxdate='2016-8-20' placeholder="minDate: today, maxDate: '2016-8-20'">
</p>
</div>
<div class="example_wrapper" id="strap">
<h3>Custom elements and input groups</h3>
<p>flatpickr can parse an input group of textboxes and buttons, common in <strong>Bootstrap</strong> and other frameworks.</p>
<p>This permits additional markup, as well as custom elements to trigger the state of the calendar. </p>
<p>Mark your input element with
<code>data-input</code> (mandatory), and any additional buttons with
<code>data-toggle</code>,
<code>data-open</code>,
<code>data-close</code>, or
<code>data-clear</code>.</p>
<pre class='prettyprint lang-html'>
<p class="flatpickr input-group" data-wrap="true" data-clickOpens="false">
<input placeholder="Pick date" data-input>
<a class="input-btn" data-toggle><i class="icon-calendar"></i></a>
<a class="input-btn" data-clear><i class="icon-close"></i></a>
</p>
</pre>
<p class="flatpickr input-group" data-wrap="true" data-clickOpens="false">
<input data-input placeholder="Pick date">
<a class="input-btn" data-toggle><i class="icon-calendar"></i></a>
<a class="input-btn" data-clear><i class="icon-close"></i></a>
<div style="clear:both;"></div>
</p>
</div>
<div class="example_wrapper" data-desc="Datetimepicker" id="datetimepicker">
<h3>DateTime Picker</h3>
<pre class='prettyprint lang-html'>
<input class=flatpickr data-enabletime=true>
</pre>
<p>
<input class=flatpickr data-enabletime=true placeholder="Pick date and time">
</p>
<br>
<h3>DateTime Picker: 24 Hour Mode</h3>
<pre class='prettyprint lang-html'>
<input class=flatpickr data-enabletime=true data-time_24hr=true data-timeFormat="H:i">
</pre>
<p>
<input class=flatpickr data-enabletime=true data-time_24hr=true data-timeFormat="H:i" placeholder="24 hour time">
</p>
<br>
<h3>DateTime Picker with seconds</h3>
<pre class='prettyprint lang-html'>
<input class=flatpickr data-enabletime=true data-enableseconds=true data-timeFormat="h:i:S">
</pre>
<p>
<input class=flatpickr data-enabletime=true data-enableseconds=true data-timeFormat="h:i:S" placeholder="Pick date and time">
</p>
</div>
<div class="example_wrapper" data-desc="Time Picker" id="timepicker">
<h3>Time Picker</h3>
<pre class='prettyprint lang-html'>
<input class=flatpickr data-enabletime=true data-nocalendar=true value="09:00">
</pre>
<input class=flatpickr data-enabletime=true data-nocalendar=true placeholder="Pick time" value="09:00 PM">
</div>
<div class="example_wrapper" data-desc="User-Friendly date output" id="altinput">
<h3>Human-friendly Date Output</h3>
<p>altInput can be used for displaying a friendly date format (per <code>altFormat</code>) to the user while sending the date formatted as <code>dateFormat</code> to the server. Feel free to inspect the input element below after picking a date to see what's going on. </p>
<pre class='prettyprint lang-html'>
<input class=flatpickr data-altinput=true data-altFormat="F j, Y">
</pre>
<p>
<input class=flatpickr id="alt" data-altinput=true data-altFormat="F j, Y" placeholder="The real input is hidden :^)">
</p>
<p><strong>Selected date</strong>: <span id=realdate>nothing yet</span></p>
</div>
<div class="example_wrapper" data-desc="Preloading dates" id="defaultdate">
<h3>Preload date and time</h3>
<p>
You may load the calendar with a predefined value, ranging from
simple dates, such as "2016-04-10" to full-fledged datetime strings.
</p>
<pre class='prettyprint lang-html'>
<input class=flatpickr data-defaultDate="2016-03-01 03:30:00 -0300" data-enableTime="true">
</pre>
<p>
<input class=flatpickr data-defaultDate="2016-03-01 03:30:00 -0300" data-enableTime="true">
</p>
<br>
<pre class='prettyprint lang-html'>
<input class=flatpickr data-defaultDate="2016-12-27T16:16:22.585Z" data-enableTime="true">
</pre>
<p>
<input class=flatpickr data-defaultDate="2016-12-27T16:16:22.585Z" data-enableTime="true">
</p>
</div>
<div class="example_wrapper" data-desc="Timezones & UTC" id="utc">
<h3>UTC mode</h3>
<p>
By defaults, JavaScript's Date converts all dates to a local time. However, locale-agnostic databases often store dates in UTC. flatpickr can convert any given dates to UTC and select a datetime in UTC with a simple switch. Here are the previous examples with UTC mode enabled.
</p>
<pre class='prettyprint lang-html'>
<input class=flatpickr data-utc="true" data-defaultDate="2016-03-01 03:30:00 -0300" data-enableTime="true">
</pre>
<p>
<input class=flatpickr data-utc="true" data-defaultDate="2016-03-01 03:30:00 -0300" data-enableTime="true">
</p>
<br>
<pre class='prettyprint lang-html'>
<input class=flatpickr data-defaultDate="2016-12-27T16:16:22.585Z" data-utc="true" data-enableTime="true">
</pre>
<p>
<input class=flatpickr data-defaultDate="2016-12-27T16:16:22.585Z" data-utc="true" data-enableTime="true">
</p>
</div>
<div class="example_wrapper" data-desc="Disabling dates" id="disable">
<h3>Disable specific dates or date intervals</h3>
<pre class='prettyprint lang-js'>
flatpickr('#disableRange', {
disable: [
{
from: "2016-07-06",
to: "2016-07-09"
},
"2016-07-24"
],
minDate: "today"
});
flatpickr('#disableRangeMultiple', {
disable:
[
{ 'from' : "2016-09-06", 'to' : "2016-09-09" },
{ 'from' : "August 25, 2016", 'to' : "August 31, 2016" }
],
minDate: "today",
dateFormat: 'Y-m-d'
});
</pre>
<p>
<input id="disableRange" placeholder="disabled from July 6-9">
</p>
<p>
<input id="disableRangeMultiple" placeholder="disabled September 6-9 & August 25-31 2016 ">
</p>
</div>
<div class="example_wrapper" data-desc="Utilizing onChange Event" id="onchange">
<h3>Setting options on the fly</h3>
<pre class='prettyprint lang-js'>
var check_in = flatpickr("#check_in_date", { minDate: new Date() });
var check_out = flatpickr("#check_out_date", { minDate: new Date() });
check_in.set("onChange", function(d) {
check_out.set("minDate", d.fp_incr(1)); //increment by one day
});
check_out.set("onChange", function(d) {
check_in.set("maxDate", d);
});
</pre>
<p>
<input id="check_in_date" placeholder="Check-In Date">
</p>
<p>
<input id="check_out_date" placeholder="Check Out Date">
</p>
</div>
<div class="example_wrapper" id=weeknumbers data-desc="Week numbers" >
<h3>Display week numbers</h3>
<pre class='prettyprint lang-html'>
<input class=flatpickr data-weeknumbers=true placeholder="Enabled week numbers">
</pre>
<p>
<input class=flatpickr data-weeknumbers=true placeholder="Enabled week numbers">
</p>
</div>
<div class="example_wrapper" id=inline-calendar data-desc="Inline calendar" >
<h3>Inline or embedded calendar</h3>
<pre class='prettyprint lang-html'>
<input class=flatpickr data-inline=true placeholder="Pick a date below">
</pre>
<p>
<input class=flatpickr data-inline=true placeholder="Pick a date below">
</p>
</div>
<div class="example_wrapper" data-desc="Customizing default options" id="prototype">
<h3>Customizing default options</h3>
<pre class='prettyprint lang-js'>
// use your own arrow icons
flatpickr.init.prototype.defaultConfig.prevArrow = "<i class='icon i-angle-left'></i>";
flatpickr.init.prototype.defaultConfig.nextArrow = "<i class='icon i-angle-right'></i>";
// change the first day of the week to Monday
flatpickr.init.prototype.l10n.firstDayOfWeek = 1;
// then initialize your calendars
flatpickr(".flatpickr")
....
</pre>
</div>
<p></p>
<div class="example_wrapper" id=options>
<h3 data-desc="Options">Options</h3>
<p>
<strong>Protip: </strong> <u>all</u> of the string/boolean config options can also be supplied using data attributes, e.g. data-mindate, data-defaultdate, data-dateformat etc.
</p>
<table class=table>
<thead>
<tr>
<th>Config Option</th>
<th>Type</th>
<th>Default</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td>altFormat</td>
<td>string</td>
<td>"F j, Y"</td>
<td>Exactly the same as date format, but for the altInput field</td>
</tr>
<tr>
<td>altInput</td>
<td>Boolean</td>
<td>false</td>
<td>Show the user a readable date (as per altFormat), but return something totally different to the server. </td>
</tr>
<tr>
<td>altInputClass</td>
<td>String</td>
<td>null</td>
<td>This class will be added to the input element created by the altInput option. Helpful if input elements are styled using classes. Bootstrap users will want to specify <code>form-control</code> here.</td>
</tr>
<tr>
<td>dateFormat</td>
<td>string</td>
<td>'Y-m-d'</td>
<td>A string of characters which are used to define how the date will be displayed in the input box. The supported characters are defined in the table below.</td>
</tr>
<tr>
<td>defaultDate</td>
<td>String/Date Object</td>
<td>null</td>
<td>Set the initial selected date. Same as preloading a date string into an input's value attribute, but can also handle a Date object. </td>
</tr>
<tr>
<td>disable</td>
<td>array</td>
<td>null</td>
<td>Dates to disable, using intervals</td>
</tr>
<tr>
<td>enableTime</td>
<td>boolean</td>
<td>false</td>
<td>Enables time picker </td>
</tr>
<tr>
<td>hourIncrement</td>
<td>integer</td>
<td>1</td>
<td>Adjusts the step for the hour input (incl. scrolling) </td>
</tr>
<tr>
<td>inline</td>
<td>Boolean</td>
<td>false</td>
<td>Display the calendar inline.</td>
</tr>
<tr>
<td>maxDate</td>
<td>String</td>
<td>null</td>
<td>The maximum date that a user can pick to, as a string.
<br>See <a target=_blank href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/parse">Date.parse()</a></td>
</tr>
<tr>
<td>minDate</td>
<td>String</td>
<td>null</td>
<td>The minimum date that a user can start picking from, as a string.
<br>See <a target=_blank href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/parse">Date.parse()</a></td>
</tr>
<tr>
<td>minuteIncrement</td>
<td>integer</td>
<td>5</td>
<td>Adjusts the step for the minute input (incl. scrolling) </td>
</tr>
<tr>
<td>onChange</td>
<td>function(dateObject)</td>
<td>n/a</td>
<td>A function that gets triggered on every date selection </td>
</tr>
<tr>
<td>parseDate</td>
<td>function</td>
<td>false</td>,
<td>A function that expects a date string and must return a Date object</td>
</tr>
<tr>
<td>shorthandCurrentMonth</td>
<td>boolean</td>
<td>false</td>
<td>Show the month using the shorthand version. </td>
</tr>
<tr>
<td>timeFormat</td>
<td>string</td>
<td>'H:i'</td>
<td>A string of characters which are used to define how the time will be displayed in the input box. </td>
</tr>
<tr>
<td>time_24hr</td>
<td>boolean</td>
<td>false</td>
<td>Displays time picker in 24 hour mode without AM/PM selection when enabled.</td>
</tr>
</tbody>
</table>
</div>
<div class="example_wrapper" id=dateformat>
<h3>Date Format Characters</h3>
<table class=table>
<thead>
<tr>
<th>Character</th>
<th>Description</th>
<th>Example</th>
</tr>
</thead>
<tbody>
<tr>
<td>d</td>
<td>Day of the month, 2 digits with leading zeros</td>
<td>01 to 31</td>
</tr>
<tr>
<td>D</td>
<td>A textual representation of a day</td>
<td>Mon through Sun</td>
</tr>
<tr>
<td>j</td>
<td>Day of the month without leading zeros</td>
<td>1 to 31</td>
</tr>
<tr>
<td>l (lowercase 'L')</td>
<td>A full textual representation of the day of the week</td>
<td>Sunday through Saturday</td>
</tr>
<tr>
<td>w</td>
<td>Numeric representation of the day of the week</td>
<td>0 (for Sunday) through 6 (for Saturday)</td>
</tr>
<tr>
<td>F</td>
<td>A full textual representation of a month</td>
<td>January through December</td>
</tr>
<tr>
<td>m</td>
<td>Numeric representation of a month, with leading zero</td>
<td>01 through 12</td>
</tr>
<tr>
<td>M</td>
<td>A short textual representation of a month</td>
<td>Jan through Dec</td>
</tr>
<tr>
<td>n</td>
<td>Numeric representation of a month, without leading zeros</td>
<td>1 through 12</td>
</tr>
<tr>
<td>U</td>
<td>The number of seconds since the Unix Epoch</td>
<td>1413704993</td>
</tr>
<tr>
<td>y</td>
<td>A two digit representation of a year</td>
<td>99 or 03</td>
</tr>
<tr>
<td>Y</td>
<td>A full numeric representation of a year, 4 digits</td>
<td>1999 or 2003</td>
</tr>
</tbody>
</table>
</div>
<div class="example_wrapper" id=timeformat>
<h3>Time Format Characters</h3>
<table class=table>
<thead>
<tr>
<th>Character</th>
<th>Description</th>
<th>Example</th>
</tr>
</thead>
<tbody>
<tr>
<td>H</td>
<td>Hours</td>
<td>00 to 23</td>
</tr>
<tr>
<td>h</td>
<td>Hours</td>
<td>1 to 12</td>
</tr>
<tr>
<td>i</td>
<td>Minutes</td>
<td>00 to 59</td>
</tr>
<tr>
<td>K</td>
<td>AM/PM</td>
<td>AM or PM</td>
</tr>
</tbody>
</table>
<p>
<h3>Escaping date format characters</h3>
</p>
<p>To escape a character (if you need to use one of the reserved format characters above) use a double backslash: \\</p>
<p>Example:</p>
<pre class='prettyprint'><code>dateFormat: '\\Da\\y picke\\d: Y/m/d'
</code></pre>
<p>To get something like:</p>
<p><strong>Day picked: 2013/02/12</strong></p>
<p>If you do not escape the characters you would end up with something like this instead:</p>
<p><strong>Tuea13 picke12: 2013/02/12</strong></p>
<p>Which is probably not what you want...</p>
</div>
<div class="example_wrapper" id=local>
<h3 id="locale">Localization</h3>
<p>flatpickr supports localizing text in a similar way to modifying the methods (above).</p>
<table class=table>
<thead>
<tr>
<th>Property</th>
<th>Type</th>
<th>Default</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td>l10n.weekdays.shorthand</td>
<td>array</td>
<td>['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat']</td>
<td>The shortened version of each weekday, starting with Sunday</td>
</tr>
<tr>
<td>l10n.weekdays.longhand</td>
<td>array</td>
<td>['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday']</td>
<td>The long version of each weekday, starting with Sunday</td>
</tr>
<tr>
<td>l10n.months.shorthand</td>
<td>array</td>
<td>['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']</td>
<td>Shortened version of each month, starting with January</td>
</tr>
<tr>
<td>l10n.months.longhand</td>
<td>array</td>
<td>['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December']</td>
<td>Long version of each month, starting with January</td>
</tr>
<tr>
<td>l10n.daysInMonth</td>
<td>array</td>
<td>[31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31]</td>
<td>How many days in each month, starting with January</td>
</tr>
<tr>
<td>l10n.firstDayOfWeek</td>
<td>integer</td>
<td>0</td>
<td>Start the calendar on a different weekday (0 = Sunday, 1 = Monday, 2 = Tuesday, etc.)</td>
</tr>
</tbody>
</table>
<p><strong>Example:</strong> weekdays in French:
<pre class='prettyprint lang-js'><code><script>
flatpickr.init.prototype.l10n.weekdays.longhand = ['dimanche', 'lundi', 'mardi', 'mercredi', 'jeudi', 'vendredi', 'samedi'];
flatpickr('#yourId');
</script>
</code></pre>
</p>
</div>
</div>
</div>
<div class="c-r">
<div>
<h2>Table of Contents</h2>
<ol></ol>
<hr>
<strong>Theme:</strong>
<select id=themes>
<option value="">Default</option>
</select>
</div>
</div>
</div>
<script src="dist/flatpickr.min.js"></script>
<script>
// setting custom defaults
flatpickr.init.prototype.defaultConfig.prevArrow = "<i class='icon icon-angle-left'></i>";
flatpickr.init.prototype.defaultConfig.nextArrow = "<i class='icon icon-angle-right'></i>";
flatpickr.init.prototype.l10n.firstDayOfWeek = 1;
//Regular flatpickr
var t = flatpickr('#flatpickr-tryme');
var calendars = flatpickr(".flatpickr");
flatpickr(".calendar");
// Custom date format
flatpickr('#dateFormat', {
dateFormat: 'd-m-Y'
});
flatpickr('#dateFormat-mdy', {
dateFormat: 'm/d/Y'
});
calendars.byID("alt").config.onChange = function(obj, str){
document.querySelector("#realdate").innerText = str;
}
flatpickr('#disableRange', {
disable: [
{
from: "2016-07-06",
to: "2016-07-09"
},
"2016-07-24"
],
minDate: "today"
});
flatpickr('#disableRangeMultiple', {
disable: [{
'from': "2016-09-06",
'to': "2016-09-09"
}, {
'from': "August 25, 2016",
'to': "August 31, 2016"
}],
minDate: "today",
dateFormat: 'Y-m-d'
});
var check_in = flatpickr("#check_in_date", {
minDate: new Date()
});
var check_out = flatpickr("#check_out_date", {
minDate: new Date()
});
check_in.set("onChange", function(d) {
check_out.set("minDate", d.fp_incr(1));
});
check_out.set("onChange", function(d) {
check_in.set("maxDate", d);
});
</script>
<script async src="assets/prettify.js?skin=none"></script>
<script async src="assets/table-of-contents.js"></script>
<script async src="assets/themer.js"></script>
</body>
</html>