How to add the date by 2 days from the current date by default when the page is displayed using datepicker
How can I achieve this?
$(
"#toDate").kendoDatePicker({
value:
new Date(),
min:
new Date(1950, 0 ,1),
max:
new Date(2049,11,31)
})
Here by default it is giving current date for example 4/27/2010, but I wanted it to diplsay by + 2 days i.e 4/29/2012.How can I achieve this?