I am trying to use a datePicker
with input in array, because there are 5 validity fields, which I will insert with PHP in an Oracle database. Using the class
option the datePicker
is called, but it only writes the value to the first input. By clicking on the following he changes the first, always. Any suggestions?
DatePicker:
$(function() {
$(".validade_treinamento").datepicker({
minDate: 0, //NÃO PERMITIR DATA MENOR QUE A ATUAL
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: ['Jan','Fev','Mar','Abr','Mai','Jun','Jul','Ago','Set','Out','Nov','Dez']
});
});
Call in inputs:
<input type = "text" id="validade_treinamento[]" name = "validade_treinamento[]" class="validade_treinamento" placeholder="Clique Aqui" size = 10 maxlength = 10 disabled>
Example