2
I have the following Code:
$(".datePicker").datepick();
$("#IconDate").on("click", function () {
$("#Date").focus();
})
My Html:
<div class="float-left gutter-right field-wrap">
<label for="admissionEndDate">Data Admissão Fim</label>
<span class="input-type-text">
<input type="text" id="Date" name="admissionEndDate" class="datePicker hasDatePick" />
<a href="#" class="datePicker" title="Calendário" id="IconDate">
<img src="~/Content/images/icons/fugue/calendar-month.png" width="16" height="16" />
</a>
</span>
</div>
It is specifying that when you click on the icon the stylized Picker data appears, but when I click on the input it also appears. wasn’t supposed to appear in the input click.
Managed to make?
– David Fornazier
didn’t give that datepiker and kind of customizing it looks so it doesn’t even open
– Joseliz
But you can insert the customizations inside the datepicker itself, in the call building it.
– David Fornazier
ai no longer know how, the problem would have to change in all views
– Joseliz