I am using a telerik radScheduler into my major project. and it is working fine on Local system.
But on live it is not working fine.
I can only view my scheduled activity, drag & drop activity, increase or decrease time span only.
But when i try to create or edit an recurrence activity it open the edit mode but nothing work on it.
Even insert and cancel buttons are also not working on edit mode.
I am showing you simple example of my code over here, please have a look.
Remember that it is working fine on local machine but on live it is not working.

//on aspx page

    <div class="clear"></div>
        <telerik:RadScheduler ID="RadScheduler1" runat="server">
            <AppointmentContextMenus>
                <telerik:RadSchedulerContextMenu runat="server" ID="SchedulerAppointmentContextMenu">
                    <Items>
                        <telerik:RadMenuItem Text="Completed / Re-Initiate" ImageUrl="../Images/right-img.png" Value="complete"/>
                        <telerik:RadMenuItem Text="Notified" ImageUrl="../Images/calender_icon.gif"/>
                    </Items>
                </telerik:RadSchedulerContextMenu>
            </AppointmentContextMenus>
            <TimeSlotContextMenus>
                <telerik:RadSchedulerContextMenu runat="server" ID="SchedulerTimeSlotContextMenu">
                    <Items>
                        <telerik:RadMenuItem Text="New Appointment" ImageUrl="../Images/plus.png" Value="CommandAddAppointment"></telerik:RadMenuItem>
                        <telerik:RadMenuItem Text="New Recurring Appointment" ImageUrl="../Images/refresh-icon.gif" Value="CommandAddRecurringAppointment"></telerik:RadMenuItem>
                        <telerik:RadMenuItem IsSeparator="true"></telerik:RadMenuItem>
                        <telerik:RadMenuItem Text="Go to today" Value="CommandGoToToday"></telerik:RadMenuItem>
                    </Items>
                </telerik:RadSchedulerContextMenu>
            </TimeSlotContextMenus>
        </telerik:RadScheduler>


//on aspx.cs page

    protected void bindCalendar(DataTable dtSchedule)
    {
        RadScheduler1.DataSource = dtSchedule;
        //RadScheduler1.DataSourceID = "schedule_id";
        RadScheduler1.DataKeyField = "schedule_id";
        RadScheduler1.DataStartField = "schedule_from";
        RadScheduler1.DataEndField = "schedule_to";
        RadScheduler1.DataRecurrenceField = "schedule_record_data";
        RadScheduler1.DataDescriptionField = "schedule_description";
        RadScheduler1.DataRecurrenceParentKeyField = "schedule_record_key";
        RadScheduler1.DataSubjectField = "schedule_title";
        RadScheduler1.DataBind();
    }

//datatable structure
ref.tbl_scheduler
    schedule_id (PK, int, not null)
    schedule_title (nvarchar(max), null)
    schedule_from (datetime, null)
    schedule_to (datetime, null)
    schedule_record_key (int, null)
    schedule_record_data (nvarchar(max), null)
    schedule_description (nvarchar(max), null)
    activity_type (nvarchar(max), null)
    schedule_users (nvarchar(max), null)
    schedule_group (nvarchar(max), null)
    schedule_sop (int, null)
    schedule_days (nvarchar(max), null)
    schedule_occurence (nvarchar(max), null)
    schedule_by (int, null)
    schedule_date (datetime, null)
    schedule_modify_by (int, null)
    schedule_modify_date (datetime, null)
    schedule_is_completed (bit, null)
    schedule_completed_users (nvarchar(max), null)
    schedule_completed_group (nvarchar(max), null)
    schedule_is_delete (bit, null)
    schedule_form (int, null)
    schedule_division_fkid (int, null)
    schedule_company_fkid (int, null)
    schedule_sop_for (int, null)

Recommended Answers

All 2 Replies

Member Avatar for LastMitch

Remember that it is working fine on local machine but on live it is not working.

@prashant9928

What is not working fine? Can you be more specific? There's nothing wrong with the code. I don't see anything that is wrong with it.

What issue are you having?

I agree with Mitch. Your code looks clean, and does not appear to have any references to a machine name or location that might be inaccessible from your live website.

Have you submitted this post to the Telerik Forums or opened a support ticket?

Can you post the entirety of the markdown for your page?

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.