Completed
Last Updated: 22 Oct 2015 15:03 by ADMIN
Completed
Last Updated: 16 Jul 2015 11:41 by ADMIN
ADMIN
Created by: Plamen
Comments: 7
Category: Scheduler
Type: Bug Report
5
Described in this forum thread-http://www.telerik.com/community/forums/aspnet-ajax/scheduler/timeline-view-doesn-t-line-up-correctly.aspx#2764757
Completed
Last Updated: 05 May 2015 08:32 by ADMIN
Completed
Last Updated: 20 Sep 2016 10:59 by Christian
Completed
Last Updated: 30 Apr 2014 11:27 by ADMIN
Completed
Last Updated: 13 Oct 2014 10:37 by ADMIN
Unplanned
Last Updated: 09 Sep 2019 10:58 by ADMIN

Hover over the command arrows on the radScheduler when the view is set to month view.  The Tooltip will display "next day" and "previous day" instead of "next month" and "previous month".

The same happens for week view.

Temporary workaround: 

<telerik:RadCodeBlock runat="server">
    <script>
        function pageLoadHandler() {
            var scheduler = $find("<%= RadScheduler1.ClientID %>");
            var $scheduler = $telerik.$(scheduler.get_element());
            var viewType = "Day";
            if (scheduler.get_selectedView() == Telerik.Web.UI.SchedulerViewType.WeekView) {
                viewType = "Week";
            } else if (scheduler.get_selectedView() == Telerik.Web.UI.SchedulerViewType.MonthView) {
                viewType = "Month";
            }

            $scheduler.find(".rsPrevDay").attr("title", "Previous " + viewType)
            $scheduler.find(".rsNextDay").attr("title", "Next " + viewType)

            // Sys.Application.remove_load(pageLoadHandler);  
        }
        Sys.Application.add_load(pageLoadHandler);
    </script>
</telerik:RadCodeBlock>

Completed
Last Updated: 22 Aug 2013 08:27 by ADMIN
Declined
Last Updated: 01 Nov 2013 13:06 by Elena
Created by: Legis
Comments: 1
Category: Scheduler
Type: Bug Report
1
I'm using RadScheduler in a page that is called with a script "windows.open" but does not pop up. As is shown in IE6 or IE7 displays correctly but when running in IE9 is very compressed cells. In this control only use the view of "time-line" because I am trying to show the availability of people going to invite a date. Can you help me with this bug?
Declined
Last Updated: 26 Jan 2016 14:51 by ADMIN
ADMIN
Created by: Boyan Dimitrov
Comments: 0
Category: Scheduler
Type: Bug Report
1

			
Completed
Last Updated: 14 Mar 2014 09:10 by ADMIN
Completed
Last Updated: 20 Nov 2013 21:19 by Neeraj
RADScheduler events does not align with the time columns headers on IE10.
Demo can be used to reproduce the bug on IE10, http://demos.telerik.com/aspnet-ajax/scheduler/examples/timelineview/defaultcs.aspx
Completed
Last Updated: 10 Feb 2022 17:36 by ADMIN
1 2 3 4 5