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

how could disable the option to not be able to click on the Timeslot?

3 Answers 51 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
ALBERT
Top achievements
Rank 1
ALBERT asked on 15 Mar 2011, 05:30 PM

 

how could disable the option to not be able to click on the Timeslot, where it creates the appointment.

thanks for your help 

3 Answers, 1 is accepted

Sort by
0
Veronica
Telerik team
answered on 16 Mar 2011, 09:00 AM
Hello ALBERT,

As I understand you want to disable the Insert of appointments. This could be easily achieved by setting the AllowInsert property of the RadScheduler to "false".

Kind regards,
Veronica Milcheva
the Telerik team
Registration for Q1 2011 What’s New Webinar Week is now open. Mark your calendar for the week starting March 21st and book your seat for a walk through all the exciting stuff we ship with the new release!
0
Sandy
Top achievements
Rank 1
answered on 06 Mar 2012, 05:36 PM
hi
I want to disable the only option button how can I disable that please help me.
0
Plamen
Telerik team
answered on 08 Mar 2012, 05:04 PM
Hello Sandy,

 
If you are trying to disable the "Options" button in the Inline form you can use the following code:

function OnClientFormCreated(sender, args) {
           $telerik.$(".rsAptEditMore").bind("click", function (e) {
               e.preventDefault();
               e.stopPropagation();
           });
       }

Hope this will help.

Regards, 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.
Tags
Scheduler
Asked by
ALBERT
Top achievements
Rank 1
Answers by
Veronica
Telerik team
Sandy
Top achievements
Rank 1
Plamen
Telerik team
Share this question
or