Hello
I am using the jQuery datepicker plugin for a project I'm working on, but noticed the following:
I changed the default styling so that the dates wouldn't be font-weight: bold but normal. This way I thought I could, with the help of an ajax call bold the dates that have appointments.
To do this, I use the onSelect and onChangeMonthYear events. This semi works. The problem is that when using onSelect: I go through the dates, bold the ones that have an appointment (I halt the JS with alerts and see this working), but it seems that the datepicker redraws the .ui-datepicker-calendar table after onSelect, removing my bold dates.
Is there an other way to approach this, am I doing something wrong maybe?