I am programming a form which includes a date_input.datepicker control from bootstap, but when positioning the cursor in the textbox the date history puts the calendar in the background making it difficult to select a date of it.
The code I use to present the calendar is as follows:
$(document).ready(function () {
var date_input = $('#<%=txtFechaIngreso.ClientID %>'); //our date input has the name "date"
var container = $('.bootstrap-iso form').length > 0 ? $('.bootstrap-iso form').parent() : "body";
date_input.datepicker({
format: 'dd/mm/yyyy',
container: container,
todayHighlight: true,
autoclose: true,
showOnFocus: true,
language: 'es'
})
})
I include an image where I mark with a red fleha as the list of recent dates selected in the control set the calendar.
The question is: How can I do so that the list of recent dates does not appear or, failing that does not obstruct the calendar display.
Greetings, I will be attentive to your answers, I thank you in advance.
Greetings.