I have implemented the jquery ui datepicker in my project by simply copying and pasting the necessary css and js files.
$("#birth_date").datepicker(
{
changeMonth: true,
changeYear: true,
yearRange: "1990:2050",
dateFormat: 'yy-mm-dd'
});
When applying it to a textbox, I made a modification to the .ui-datepicker class by adjusting its width.
However, I am encountering two issues:
1 - The .ui-state-disabled class is being applied, rendering the next and previous div's images as disabled.
2 - When hovering over those buttons (next and prev), the image disappears.
If anyone could assist me with obtaining the necessary css images and provide insight into why the disabled class is being applied, I would greatly appreciate it.
Please help
Thanks in advance..