This is a migrated thread and some comments may be shown as answers.

RadScheduler read only for certain users?

1 Answer 169 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
Jeff
Top achievements
Rank 1
Jeff asked on 02 Oct 2008, 05:23 PM
Can RadScheduler be implemented so that each user has their own schedule... which is read/write but when others view it, the schedule is only read?

Thanks,
Jeff

1 Answer, 1 is accepted

Sort by
0
Peter
Telerik team
answered on 03 Oct 2008, 08:01 AM
Hello Jeff,

Yes, you can set the ReadOnly property of RadScheduler dynamically based on the current user.

protected void Page_Load(object sender, EventArgs e)  
    {  
        if([MyCustomCurrentUserCondition])  
        RadScheduler1.ReadOnly = false;  
        else 
        RadScheduler1.ReadOnly = true;  
    } 


Cheers,
Peter
the Telerik team

Check out Telerik Trainer, the state of the art learning tool for Telerik products.
Tags
Scheduler
Asked by
Jeff
Top achievements
Rank 1
Answers by
Peter
Telerik team
Share this question
or