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

[Solved] Can text fields in the event entry form be made read-only?

1 Answer 108 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
Unnikrishnan
Top achievements
Rank 1
Unnikrishnan asked on 30 Jun 2009, 10:56 AM
Hi Guys and Gals,

I am trying to figure out whether the RadScheduler would be ideal for our new application.Here are a few requirements that have left me scratching my head.Any help in solving them would be greatly appreciated.

1) I have a textbox to add certain notes.Once submitted it should be made read only but new notes should be added. 

2) Right-mouse clicking on any existing event from any view should allow the user to "Duplicate" that event and pre-populate the event entry form with the same values except for date/time-related fields.

3) Is it possible to display the no.of events booked on a particular date by hovering over it.

Has anybody incorporated these kind of requirements in their RadScheduler?Is it possible to customize the RadScheduler for these requirements programmatically?

Thanks in advance.

1 Answer, 1 is accepted

Sort by
0
Peter
Telerik team
answered on 02 Jul 2009, 03:39 PM
Hello Unnikrishnan,

1. Please, try the following code:
 protected void RadScheduler1_AppointmentDataBound1(object sender, SchedulerEventArgs e)  
    {  
         e.Appointment.AllowDelete = false;  
         e.Appointment.AllowEdit = false;  
    } 

2. I don't quite understand this requirement. Can you elaborate?

3. Please, find attached a sample project of the desired functionality.



Kind regards,
Peter
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.
Tags
Scheduler
Asked by
Unnikrishnan
Top achievements
Rank 1
Answers by
Peter
Telerik team
Share this question
or