This question is locked. New answers and comments are not allowed.
Hi
I've got a custom RadDatePicker picker column within in RadGridView which is working great however we need to set a minimum date and a maximum date range. In my CreateCellEditElement, I create the DatePicker instance and set its properties. I've tried setting the SelectableStartDate and SelectableEndDate properties to our required values but these just seem to get ignored...
Please can you explain how I can set these properties?
Thanks
Keith
I've got a custom RadDatePicker picker column within in RadGridView which is working great however we need to set a minimum date and a maximum date range. In my CreateCellEditElement, I create the DatePicker instance and set its properties. I've tried setting the SelectableStartDate and SelectableEndDate properties to our required values but these just seem to get ignored...
RadDatePicker cellEditElement =
new
RadDatePicker()
{
DateSelectionMode = Telerik.Windows.Controls.Calendar.DateSelectionMode.Month,
DisplayDateStart = dteStart, DisplayDateEnd = dteEnd,
SelectableDateStart = dteStart, SelectableDateEnd = dteEnd
};
Please can you explain how I can set these properties?
Thanks
Keith