Hi
i want to set work week as sunday. now my application it is displaying as monday. but i want to start work week as sunday-thrusday instead of monday-friday
Thanks
Hema
1 Answer, 1 is accepted
0
Ivan Todorov
Telerik team
answered on 17 Feb 2012, 09:23 AM
Hi Hema,
Thank you for contacting us.
Currently, RadScheduler does not support modifying the default work week. However, you can use the CellFormatting event to modify the appearance of the cells so that they are displayed as work time. The following code snippet demonstrates this:
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
this.radScheduler1.CellFormatting += new EventHandler<Telerik.WinControls.UI.SchedulerCellEventArgs>(radScheduler1_CellFormatting);