Hi,
How can i change the color of grid to the specific date on datepicker if there's special date,
For example:
January 1 = New Year.
Thank you in advance
Hi,
How can i change the color of grid to the specific date on datepicker if there's special date,
For example:
January 1 = New Year.
Thank you in advance
Im following this link:
http://www.jquerybyexample.net/2012/0...
and edit the code to:
var date = new Date();
var SelectedDates={};
var Highlight = SelectedDates[date];
SelectedDates[new Date('04/05/2012')] = new Date('04/05/2012');
SelectedDates[new Date('05/04/2012')] = new Date('05/04/2012');
SelectedDates[new Date('06/06/2012')] = new Date('06/06/2012');
//mobDatepicker is the name of my datepicker
Apperyio("mobDatePicker").datepicker({ //always saying that this is undefined.
beforeShowDay: function(date)
{
var Highlight = SelectedDates[date];
if (Highlight) {
return [true, "Highlighted", Highlight];
}
else {
return [true, '', ''];
}
}
});
Thank you.
Hi,
You should add jQuery-UI.js before use code above.
Hi She -
Try adding this resources this way -- https://devcenter.appery.io/documenta...
Please unroll error. Somewhere in the sdk.js you use "shift" for undefined variable.