Skip to content

Commit 8123427

Browse files
authored
Fix example in Scheduler How-To article How
1 parent e9ecd6c commit 8123427

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

controls/scheduler/how-to/hide-the-delete-button-of-appointments.md

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,18 @@ position: 6
1414

1515
##
1616

17-
One could hide the Delete button of Appointments either by setting the **AllowDelete**property of RadScheduler to **false** or by including the following CSS style on the page where the control is located:
17+
One could hide the Delete button of Appointments either by setting the **AllowDelete** property of RadScheduler to **false** or by including the following CSS style on the page where the control is located:
1818

1919
````CSS
2020

21-
.rsAptDelete
22-
{
23-
display: none;
21+
/* For Classic RenderMode */
22+
.rsAptDelete {
23+
display: none;
24+
}
25+
26+
/* For Lightweight RenderMode */
27+
.RadScheduler .rsApt .rsAptDelete {
28+
display: none;
2429
}
2530

2631
````

0 commit comments

Comments
 (0)