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

change text in pop up on right click

2 Answers 66 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
Jayesh Goyani
Top achievements
Rank 2
Jayesh Goyani asked on 14 Sep 2010, 09:28 AM
i want to change text..like new appoinment to "new schedule".

for detail see this image.

2 Answers, 1 is accepted

Sort by
0
Shinu
Top achievements
Rank 2
answered on 14 Sep 2010, 10:01 AM
Hello Jayesh,


It is easy to change the default message by setting Localization property values.

Mark-up:
<telerik:RadScheduler AllowInsert="true" ID="RadScheduler1" runat="server" DataEndField="End" DataKeyField="ID"
    DataSourceID="SqlDataSource2" DataStartField="Start" DataSubjectField="Subject">
 
      <Localization ContextMenuAddAppointment="New Class Scheduler" ContextMenuAddRecurringAppointment="New recurring class schedule" />
    <AppointmentContextMenus>



-Shinu.
0
Jayesh Goyani
Top achievements
Rank 2
answered on 14 Sep 2010, 11:42 AM
thanx for your help.

i try it with different way with help of your SAMPLE CODE.

<TimeSlotContextMenus>
                            <telerik:RadSchedulerContextMenu runat="server" ID="cmSchedule">
                                <Items>
                                    <telerik:RadMenuItem Text="New Schedule" Value="CommandAddAppointment">
                                    </telerik:RadMenuItem>
                                    <telerik:RadMenuItem Text="New Recurring Schedule" Value="CommandAddRecurringAppointment">
                                    </telerik:RadMenuItem>
                                    <telerik:RadMenuItem Text="Show 24-Hours" Value="CommandShow24Hours">
                                    </telerik:RadMenuItem>
                                    <telerik:RadMenuItem Text="Go to today" Value="CommandGoToToday">
                                    </telerik:RadMenuItem>
                                </Items>
                            </telerik:RadSchedulerContextMenu>
                        </TimeSlotContextMenus>
Tags
Scheduler
Asked by
Jayesh Goyani
Top achievements
Rank 2
Answers by
Shinu
Top achievements
Rank 2
Jayesh Goyani
Top achievements
Rank 2
Share this question
or