how coulddisablethe optiontonot be ableto clickontheTimeslot, where it createstheappointment.
thanks for yourhelp
3 Answers, 1 is accepted
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!
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.