Product Bundles
DevCraft
All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:
Web
Mobile
Document Management
Desktop
Reporting
Testing & Mocking
CMS
UI/UX Tools
Debugging
Free Tools
Support and Learning
Productivity and Design Tools
Is it possible to use one RadDateTimePicker and set it up for a range of seven days?
So, lets say the control says DateTime.Today is 12/1/2017, and I want a start date of seven days prior to this date. How can I do this?
C#
Thanks,
radDateTimePicker1.MinDate = DateTime.Now.AddDays(-7);
radDateTimePicker1.MaxDate = DateTime.Now;