Commit 06055e14 by Billy Larru

configurando daterangepicker en creacion de rol de policias

parent 0125c48b
......@@ -236,22 +236,22 @@ function defaultConfigDatePicker() {
}
function defaultConfigDateRangePicker() {
$('.daterange-basic').daterangepicker({
applyClass: 'bg-slate-600',
// "singleDatePicker": true,
cancelClass: 'btn-default',
// showDropdowns: false,
// timePicker: true,
// opens: 'center',
// singleDatePicker: true,
autoApply: true,
locale: {
format: 'DD/MM/YYYY'
}
});
$('.calendar.right').hide();
}
//function defaultConfigDateRangePicker() {
// $('.daterange-basic').daterangepicker({
// applyClass: 'bg-slate-600',
//// "singleDatePicker": true,
// cancelClass: 'btn-default',
//// showDropdowns: false,
//// timePicker: true,
//// opens: 'center',
//// singleDatePicker: true,
// autoApply: true,
// locale: {
// format: 'DD/MM/YYYY'
// }
// });
//// $('.calendar.right').hide();
//}
......
......@@ -331,15 +331,45 @@ function mostrarModalNuevoRol() {
});
$("#dpRangoFechas").daterangepicker({
minDate: new Date(2000, 1 - 1, 1), maxDate: new Date(),
dateFormat: 'dd/mm/yy',
defaultDate: new Date(),
changeMonth: true,
changeYear: true,
yearRange: '-18:+0',
zIndexOffset: 100000,
onSelect: function () {
}
"autoApply": true,
"locale": {
"format": "DD/MM/YYYY",
"separator": " - ",
"applyLabel": "Apply",
"cancelLabel": "Cancel",
"fromLabel": "From",
"toLabel": "To",
"customRangeLabel": "Custom",
"weekLabel": "W",
"daysOfWeek": [
"Do",
"Lu",
"Ma",
"Mi",
"Ju",
"Vi",
"Sa"
],
"monthNames": [
"Enero",
"Febrero",
"Marzo",
"Abril",
"Mayo",
"Junio",
"Julio",
"Agosto",
"Setiembre",
"Octubre",
"Noviembre",
"Diciembre"
],
"firstDay": 1
},
"startDate": "17/08/2018",
"endDate": "23/08/2018"
}, function (start, end, label) {
// console.log('New date range selected: ' + start.format('YYYY-MM-DD') + ' to ' + end.format('YYYY-MM-DD') + ' (predefined range: ' + label + ')');
});
$("#dpRangoFechas").datepicker('setDate', 'now');
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment