I'm trying to disable access to the 'more' link on the inline editor to prevent users from accessing the advanced editor.
So far, I've tried the following with no success:
.disableEditMore .rsEditOptions a.rsAptEditMore
{
left: -4000px;
visibility: hidden;
}
Then, in my RadScheduler1_AppointmentDataBound event, I do:
e.Appointment.CssClass = "disableEditMore"
but when I double click on the appointment, I can still see the 'more' option presented. Am I on the right track? Is it possible to hide or disable this?
So far, I've tried the following with no success:
.disableEditMore .rsEditOptions a.rsAptEditMore
{
left: -4000px;
visibility: hidden;
}
Then, in my RadScheduler1_AppointmentDataBound event, I do:
e.Appointment.CssClass = "disableEditMore"
but when I double click on the appointment, I can still see the 'more' option presented. Am I on the right track? Is it possible to hide or disable this?