Is there any way to make the scheduler not reliant on actual dates, but just on a 7 day week. I would like to setup an interface where the user can schedule an event to occur on a certain day in the week, for every week. Right now it goes by actual dates, rather than just a generic week.
Thanks.
3 Answers, 1 is accepted
0
Plamen
Telerik team
answered on 28 Jun 2012, 02:02 PM
Hi William,
You can set the ShowHeader="false" and the ColumnHeaderDateFormat="dddd" that will transform the RadScheduler to a week without dates:
if ((e.Container.Mode == SchedulerFormMode.AdvancedEdit) || (e.Container.Mode == SchedulerFormMode.AdvancedInsert))
{
RadDatePicker startDate = e.Container.FindControl("StartDate") as RadDatePicker;
startDate.Visible = false;
RadDatePicker endDate = e.Container.FindControl("EndDate") as RadDatePicker;
endDate.Visible = false;
}
}
Hope this will be helpful.
All the best,
Plamen Zdravkov
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now.
Thanks for the response. I implemented your code, but I'm still having the same resutls. See my code below, and a picture of the result I'm getting attached.
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now.