I am using below script for date picker in JQuery:
$('#dob').datepicker({
minDate: new Date(1900,1-1,1), maxDate: '-18Y',
dateFormat: 'dd-M-yy',
changeMonth: true,
changeYear: true,
yearRange: '-100:-18'
});
But Date picker goes under the table and only header portion is showing rest portion are hide into the table.
I have tried with below css which I putted in style.css but not solved.
.ui-datepicker{ z-index: 9999 !important;}
How to solve this issue? Please help