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

RedScheduler - Remove the red X (delete) from an appointment?

2 Answers 78 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
Robert Helm
Top achievements
Rank 1
Robert Helm asked on 12 Jul 2012, 02:19 PM
Drag and drop ability suddenly stopped working with the release 2012.1.411.40 back in April 2012. Well, I found that the issue is because the RadScheduler had the settings <MonthView ReadOnly="true">. If I change it to <MonthView ReadOnly="false"> or remove it, I can drag and drop again. However, now my appointments have a red X that will bring up a cancel window.

Is there a way to remove the red X from an appointment?

I have a context menu that offers the delete menu item, and I want to keep it. But I don't want the red X to show on the appointment.

Thanks for any info,
Robert


2 Answers, 1 is accepted

Sort by
0
Accepted
Shinu
Top achievements
Rank 2
answered on 13 Jul 2012, 06:47 AM
Hello Robert,

Try setting the following CSS.
CSS:
<style type="text/css">
    .RadScheduler_Default .rsApt .rsAptDelete
     {
       visibility: hidden !important;
     }
</style>

Thanks,
Shinu.
0
Robert Helm
Top achievements
Rank 1
answered on 13 Jul 2012, 12:43 PM
Thanks Shinu. I changed the style to just look at .rsAptDelete and it worked.
<style type="text/css">
.rsAptDelete
{
visibility: hidden !important;
}
</style>


Thanks again.
Tags
Scheduler
Asked by
Robert Helm
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
Robert Helm
Top achievements
Rank 1
Share this question
or