custom-picker.js
13.4 KB
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
"use strict";
$(document).ready(function(){
// Minimum setup
$('#datetimepicker1').datetimepicker({
icons: {
time: "icofont icofont-clock-time",
date: "icofont icofont-ui-calendar",
up: "icofont icofont-rounded-up",
down: "icofont icofont-rounded-down",
next: "icofont icofont-rounded-right",
previous: "icofont icofont-rounded-left"
}
});
// Using Locales
$('#datetimepicker2').datetimepicker({
locale: 'ru',
icons: {
time: "icofont icofont-clock-time",
date: "icofont icofont-ui-calendar",
up: "icofont icofont-rounded-up",
down: "icofont icofont-rounded-down",
next: "icofont icofont-rounded-right",
previous: "icofont icofont-rounded-left"
}
});
// Custom Formats
$('#datetimepicker3').datetimepicker({
format: 'LT',
icons: {
time: "icofont icofont-clock-time",
date: "icofont icofont-ui-calendar",
up: "icofont icofont-rounded-up",
down: "icofont icofont-rounded-down",
next: "icofont icofont-rounded-right",
previous: "icofont icofont-rounded-left"
}
});
// No Icon (input field only)
$('#datetimepicker4').datetimepicker({
icons: {
time: "icofont icofont-clock-time",
date: "icofont icofont-ui-calendar",
up: "icofont icofont-rounded-up",
down: "icofont icofont-rounded-down",
next: "icofont icofont-rounded-right",
previous: "icofont icofont-rounded-left"
}
});
// Enabled/Disabled Dates
$('#datetimepicker5').datetimepicker({
defaultDate: "11/1/2013",
disabledDates: [
moment("12/25/2013"),
new Date(2013, 11 - 1, 21),
"11/22/2013 00:53"
],
icons: {
time: "icofont icofont-clock-time",
date: "icofont icofont-ui-calendar",
up: "icofont icofont-rounded-up",
down: "icofont icofont-rounded-down",
next: "icofont icofont-rounded-right",
previous: "icofont icofont-rounded-left"
}
});
// Linked Pickers
$('#datetimepicker6').datetimepicker({
icons: {
time: "icofont icofont-clock-time",
date: "icofont icofont-ui-calendar",
up: "icofont icofont-rounded-up",
down: "icofont icofont-rounded-down",
next: "icofont icofont-rounded-right",
previous: "icofont icofont-rounded-left"
}
});
$('#datetimepicker7').datetimepicker({
useCurrent: false, //Important! See issue #1075
icons: {
time: "icofont icofont-clock-time",
date: "icofont icofont-ui-calendar",
up: "icofont icofont-rounded-up",
down: "icofont icofont-rounded-down",
next: "icofont icofont-rounded-right",
previous: "icofont icofont-rounded-left"
}
});
$("#datetimepicker6").on("dp.change", function(e) {
$('#datetimepicker7').data("DateTimePicker").minDate(e.date);
});
$("#datetimepicker7").on("dp.change", function(e) {
$('#datetimepicker6').data("DateTimePicker").maxDate(e.date);
});
// Custom icons
$('#datetimepicker8').datetimepicker({
icons: {
time: "icofont icofont-clock-time",
date: "icofont icofont-ui-calendar",
up: "icofont icofont-rounded-up",
down: "icofont icofont-rounded-down"
}
});
// View Mode
$('#datetimepicker9').datetimepicker({
viewMode: 'years',
icons: {
time: "icofont icofont-clock-time",
date: "icofont icofont-ui-calendar",
up: "icofont icofont-rounded-up",
down: "icofont icofont-rounded-down",
next: "icofont icofont-rounded-right",
previous: "icofont icofont-rounded-left"
}
});
// Min View Mode
$('#datetimepicker10').datetimepicker({
viewMode: 'years',
format: 'MM/YYYY',
icons: {
time: "icofont icofont-clock-time",
date: "icofont icofont-ui-calendar",
up: "icofont icofont-rounded-up",
down: "icofont icofont-rounded-down",
next: "icofont icofont-rounded-right",
previous: "icofont icofont-rounded-left"
}
});
// Disabled Days of the Week
$('#datetimepicker11').datetimepicker({
daysOfWeekDisabled: [0, 6],
icons: {
time: "icofont icofont-clock-time",
date: "icofont icofont-ui-calendar",
up: "icofont icofont-rounded-up",
down: "icofont icofont-rounded-down",
next: "icofont icofont-rounded-right",
previous: "icofont icofont-rounded-left"
}
});
$('input[name="daterange"]').daterangepicker();
$(function() {
$('input[name="birthdate"]').daterangepicker({
singleDatePicker: true,
showDropdowns: true
},
function(start, end, label) {
var years = moment().diff(start, 'years');
alert("You are " + years + " years old.");
});
$('input[name="datefilter"]').daterangepicker({
autoUpdateInput: false,
locale: {
cancelLabel: 'Clear'
}
});
$('input[name="datefilter"]').on('apply.daterangepicker', function(ev, picker) {
$(this).val(picker.startDate.format('MM/DD/YYYY') + ' - ' + picker.endDate.format('MM/DD/YYYY'));
});
$('input[name="datefilter"]').on('cancel.daterangepicker', function(ev, picker) {
$(this).val('');
});
var start = moment().subtract(29, 'days');
var end = moment();
function cb(start, end) {
$('#reportrange span').html(start.format('MMMM D, YYYY') + ' - ' + end.format('MMMM D, YYYY'));
}
$('#reportrange').daterangepicker({
startDate: start,
endDate: end,
"drops": "up",
ranges: {
'Today': [moment(), moment()],
'Yesterday': [moment().subtract(1, 'days'), moment().subtract(1, 'days')],
'Last 7 Days': [moment().subtract(6, 'days'), moment()],
'Last 30 Days': [moment().subtract(29, 'days'), moment()],
'This Month': [moment().startOf('month'), moment().endOf('month')],
'Last Month': [moment().subtract(1, 'month').startOf('month'), moment().subtract(1, 'month').endOf('month')]
}
}, cb);
cb(start, end);
$('.input-daterange input').each(function() {
$(this).datepicker();
});
$('#sandbox-container .input-daterange').datepicker({
todayHighlight: true
});
$('.input-group-date-custom').datepicker({
todayBtn: true,
clearBtn: true,
keyboardNavigation: false,
forceParse: false,
todayHighlight: true,
defaultViewDate: {
year: '2017',
month: '01',
day: '01'
}
});
$('.multiple-select').datepicker({
todayBtn: true,
clearBtn: true,
multidate: true,
keyboardNavigation: false,
forceParse: false,
todayHighlight: true,
defaultViewDate: {
year: '2017',
month: '01',
day: '01'
}
});
$('#config-demo').daterangepicker({
"singleDatePicker": true,
"showDropdowns": true,
"timePicker": true,
"timePicker24Hour": true,
"timePickerSeconds": true,
"showCustomRangeLabel": false,
"alwaysShowCalendars": true,
"startDate": "11/30/2016",
"endDate": "12/06/2016",
"drops": "up"
}, function(start, end, label) {
console.log("New date range selected: ' + start.format('YYYY-MM-DD') + ' to ' + end.format('YYYY-MM-DD') + ' (predefined range: ' + label + ')");
});
});
// Date-dropper js start
$("#dropper-default").dateDropper( {
dropWidth: 200,
dropPrimaryColor: "#1abc9c",
dropBorder: "1px solid #1abc9c"
}),
$("#dropper-animation").dateDropper( {
dropWidth: 200,
init_animation: "bounce",
dropPrimaryColor: "#1abc9c",
dropBorder: "1px solid #1abc9c"
}),
$("#dropper-format").dateDropper( {
dropWidth: 200,
format: "F S, Y",
dropPrimaryColor: "#1abc9c",
dropBorder: "1px solid #1abc9c"
}),
$("#dropper-lang").dateDropper( {
dropWidth: 200,
format: "F S, Y",
dropPrimaryColor: "#1abc9c",
dropBorder: "1px solid #1abc9c",
lang: "ar"
}),
$("#dropper-lock").dateDropper( {
dropWidth: 200,
format: "F S, Y",
dropPrimaryColor: "#1abc9c",
dropBorder: "1px solid #1abc9c",
lock: "from"
}),
$("#dropper-max-year").dateDropper( {
dropWidth: 200,
dropPrimaryColor: "#1abc9c",
dropBorder: "1px solid #1abc9c",
maxYear: "2020"
}),
$("#dropper-min-year").dateDropper( {
dropWidth: 200,
dropPrimaryColor: "#1abc9c",
dropBorder: "1px solid #1abc9c",
minYear: "1990"
}),
$("#year-range").dateDropper( {
dropWidth: 200,
dropPrimaryColor: "#1abc9c",
dropBorder: "1px solid #1abc9c",
yearsRange: "5"
}),
$("#dropper-width").dateDropper( {
dropPrimaryColor: "#1abc9c",
dropBorder: "1px solid #1abc9c",
dropWidth: 500
}),
$("#dropper-dangercolor").dateDropper( {
dropWidth: 200,
dropPrimaryColor: "#e74c3c",
dropBorder: "1px solid #e74c3c",
}),
$("#dropper-backcolor").dateDropper( {
dropWidth: 200,
dropPrimaryColor: "#1abc9c",
dropBorder: "1px solid #1abc9c",
dropBackgroundColor: "#bdc3c7"
}),
$("#dropper-txtcolor").dateDropper( {
dropWidth: 200,
dropPrimaryColor: "#46627f",
dropBorder: "1px solid #46627f",
dropTextColor: "#FFF",
dropBackgroundColor: "#e74c3c"
}),
$("#dropper-radius").dateDropper( {
dropWidth: 200,
dropPrimaryColor: "#1abc9c",
dropBorder: "1px solid #1abc9c",
dropBorderRadius: "0"
}),
$("#dropper-border").dateDropper( {
dropWidth: 200,
dropPrimaryColor: "#1abc9c",
dropBorder: "2px solid #1abc9c"
}),
$("#dropper-shadow").dateDropper( {
dropWidth: 200,
dropPrimaryColor: "#1abc9c",
dropBorder: "1px solid #1abc9c",
dropBorderRadius: "20px",
dropShadow: "0 0 20px 0 rgba(26, 188, 156, 0.6)"
})
// Date-dropper js end
// Color picker js start
function change_checkbox_color() {
$('.color-box .show-box').on('click', function() {
$(".color-box").toggleClass("open");
});
$('.colors-list a').on('click', function() {
var curr_color = $('main').data('checkbox-color');
var color = $(this).data('checkbox-color');
var new_colot = 'checkbox-' + color;
$('.rkmd-checkbox .input-checkbox').each(function(i, v) {
var findColor = $(this).hasClass(curr_color);
if (findColor) {
$(this).removeClass(curr_color);
$(this).addClass(new_colot);
}
$('main').data('checkbox-color', new_colot);
});
});
}
// Color picker
$("#custom").spectrum({
color: "#f00"
});
$("#flat").spectrum({
flat: true,
showInput: true
});
$("#flatClearable").spectrum({
flat: true,
showInput: true,
allowEmpty: true
});
// Color picker js end
// Mini-color js start
$('.demo').each( function() {
//
// Dear reader, it's actually very easy to initialize MiniColors. For example:
//
// $(selector).minicolors();
//
// The way I've done it below is just for the demo, so don't get confused
// by it. Also, data- attributes aren't supported at this time...they're
// only used for this demo.
//
$(this).minicolors({
control: $(this).attr('data-control') || 'hue',
defaultValue: $(this).attr('data-defaultValue') || '',
format: $(this).attr('data-format') || 'hex',
keywords: $(this).attr('data-keywords') || '',
inline: $(this).attr('data-inline') === 'true',
letterCase: $(this).attr('data-letterCase') || 'lowercase',
opacity: $(this).attr('data-opacity'),
position: $(this).attr('data-position') || 'bottom left',
swatches: $(this).attr('data-swatches') ? $(this).attr('data-swatches').split('|') : [],
change: function(value, opacity) {
if( !value ) return;
if( opacity ) value += ', ' + opacity;
if( typeof console === 'object' ) {
console.log(value);
}
},
theme: 'bootstrap'
});
});
// Mini-color js ends
});