2
I wanted to know how to properly use the maxDate
and the minDate
.
Ex.: My calendar starts in 1970 and ends in 2017:
$(document).ready(function(){
$('.datepicker').datepicker({
format:'yyyy-mm-dd',
i18n:{
months: ['Janeiro', 'Fevereiro', 'Março', 'Abril', 'Maio', 'Junho', 'Julho', 'Agosto', 'Setembro', 'Outubro', 'Novembro', 'Dezembro'],
monthsShort: ['Jan', 'Fev', 'Mar', 'Abr', 'Mai', 'Jun', 'Jul', 'Ago', 'Set', 'Out', 'Nov', 'Dez'],
weekdays: ['Domingo', 'Segunda', 'Terça', 'Quarta', 'Quinta', 'Sexta', 'Sabádo'],
weekdaysAbbrev: ['Dom', 'Seg', 'Ter', 'Qua', 'Qui', 'Sex', 'Sab'],
weekdaysShort: ['Dom', 'Seg', 'Ter', 'Qua', 'Qui', 'Sex', 'Sab'],
today: 'Hoje',
clear: 'Limpar',
close: 'Pronto',
labelMonthNext: 'Próximo mês',
labelMonthPrev: 'Mês anterior',
labelMonthSelect: 'Selecione um mês',
labelYearSelect: 'Selecione um ano',
selectMonths: true,
selectYears: 4,
cancel: 'Cancelar',
clear: 'Limpar',
},
});
});
with the ". selector" does not work, still appears years infinitely :(
– Paula
Wow, that was an example. You will apply this on your own datepicker as per your need. In your case, the
.seletor
is your.datepicker
.– LipESprY