Hi everybody,
I want to show selected date with time 12:00:00 AM format when selecting desire date from ajax calendar. but my code is not work out well. It is showing me today date with different time like that 05/17/201409:56:01 and it can't select date greater than
today.
This is my code...
function CheckDateEalier(sender, args) {
if (sender._selectedDate < new Date()) {
alert("You cannot select a day before today!");
}
else{
sender._selectedDate = new Date();
&nb ...
Go to the complete details ...