4
I have this code in javascript:
$(function() {
$("#calendario").datepicker({
changeMonth: true,
todayHighlight: true,
changeYear: true,
showOtherMonths: true,
selectOtherMonths: true,
dateFormat: 'dd/mm/yy',
dayNames: ['Domingo', 'Segunda', 'Terça', 'Quarta', 'Quinta', 'Sexta', 'Sábado', 'Domingo'],
dayNamesMin: ['D', 'S', 'T', 'Q', 'Q', 'S', 'S', 'D'],
dayNamesShort: ['Dom', 'Seg', 'Ter', 'Qua', 'Qui', 'Sex', 'Sáb', 'Dom'],
monthNames: ['Janeiro', 'Fevereiro', 'Março', 'Abril', 'Maio', 'Junho', 'Julho', 'Agosto', 'Setembro', 'Outubro', 'Novembro', 'Dezembro'],
;
monthNamesShort: ['Janeiro', 'Fevereiro', 'Março', 'Abril', 'Maio', 'Junho', 'Julho', 'Agosto', 'Setembro', 'Outubro', 'Novembro', 'Dezembro']
});
});
<div id="calendario"> </div>
And only the div
above to call the calendar.
How do I register a value on datepicker
? Remembering that it has to be manageable, IE, can register more than 1.
Lucas which datapicker is this ? of bootstrap or jqueryui?
– Gabriel Rodrigues
@Highlander, would be the jqueryui, but I have several dates to register in the month, IE, several events.
– concas