Hi,
I want to change the theme an Calendar Widget from Arctic, to Dark Blue. What I have to change to apply this effect ?
My code is this following :
<div id="calendar">
</div>
And my javascript code looks like this :
$(document).ready(function () {
$("#calendar").jqxCalendar({theme : 'arctic', width: 180, height: 180, enableTooltips: false});
// Style the weekends.
$("#calendar").jqxCalendar({ enableWeekend: true });
// Prima zi din sapt
$("#calendar").jqxCalendar({ firstDayOfWeek: 1 });
});