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

Appointment Context Menu With Icons

1 Answer 61 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
Teena
Top achievements
Rank 1
Teena asked on 14 Feb 2013, 08:23 AM
Hello,

Can anyone provide me with the sample code to create an appointment context menu for the RadScheduler. I also want to add icon to the context menu items.

Please Help, Its Urgent.
Teena

1 Answer, 1 is accepted

Sort by
0
Accepted
Princy
Top achievements
Rank 2
answered on 14 Feb 2013, 08:57 AM
Hi Teena,

Please try the below markup to create a custom Appointment context menu. To add an icon to the context menu item, set the ImageUrl property of the RadMenuItem.

ASPX:
<AppointmentContextMenus>
    <telerik:RadSchedulerContextMenu runat="server" ID="ContextMenu1" Skin="Vista">
        <Items>
            <telerik:RadMenuItem Text="Edit" Value="CommandEdit" ImageUrl="../Images/image01.JPG" />
            <telerik:RadMenuItem IsSeparator="True" />
            <telerik:RadMenuItem Text="Delete" Value="CommandDelete" ImageUrl="../Images/Image02.jpg" />
        </Items>
    </telerik:RadSchedulerContextMenu>
</AppointmentContextMenus>

Thanks,
Princy.
Tags
Scheduler
Asked by
Teena
Top achievements
Rank 1
Answers by
Princy
Top achievements
Rank 2
Share this question
or