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
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: 13 Oct 2014 10:37 by ADMIN
Completed
Last Updated: 30 Apr 2014 11:27 by ADMIN
Won't Fix
Last Updated: 22 Apr 2015 06:31 by ADMIN
Completed
Last Updated: 17 Feb 2015 15:03 by ADMIN
Completed
Last Updated: 01 Dec 2014 12:22 by ADMIN
Declined
Last Updated: 26 Jan 2016 14:51 by ADMIN
ADMIN
Created by: Boyan Dimitrov
Comments: 0
Category: Scheduler
Type: Bug Report
1

			
1 2 3 4 5