I don't know what is this called, I think something like reset..
The case is like this: I'm using inline datepicker and then I add a new Class that have own style (css) to some date in datepicker. Below is the code:
$("#calendar").datepicker({
showOtherMonths: true,
onSelect:function(){
alert($(this).val());
}
});
$(document).ready(function(){
customDate();
});
function customDate(){
$("#calendar a:eq(10)").addClass("has_event");
}
code above will add new class at 10th index 'a' element, and style for that class is:
.has_event{
color:#bb0000 !important;
font-weight:bold !important;
background:#cccccc !important;
}
The customDate() function work well at first, but after the datepicker selected, the style is reseted to default because the new Class added is gone.
So anyone knows how to prevent the datepicker reset after selected or even after onSelect event?
@S.M.09 this is what I've done :
_selectDay:function(id,month,year,td){var target=$(id);if($(td).hasClass(this._unselectableClass)||this._isDisabledDatepicker(target[0])){return}var inst=this._getInst(target[0]);inst.selectedDay=inst.currentDay=$("a",td).html();inst.selectedMonth=inst.currentMonth=month;inst.selectedYear=inst.currentYear=year;if(inst.stayOpen){inst.endDay=inst.endMonth=inst.endYear=null}this._selectDate(id,this._formatDate(inst,inst.currentDay,inst.currentMonth,inst.currentYear));if(inst.stayOpen){inst.rangeStart=this._daylightSavingAdjust(new Date(inst.currentYear,inst.currentMonth,inst.currentDay));this._updateDatepicker(inst)} if(id=="#calendar"){$("#calendar a:eq(10)").addClass("has_event");}}