Hi Duncan,
The RadDatePicker has MinDate and MaxDate properties that allows to select a date range for the Datepicker. You can set the MinDate property to desired date in order to achieve desired functionality.
C#:
protected void Page_Load(object sender, EventArgs e) |
{ |
if (!IsPostBack) |
{ |
RadDatePicker1.MinDate = DateTime.Today; |
} |
} |
|
You can check following link to online demo for more information about shared calendar.
Sharing Calendar
Thanks,
Princy.