Completed
Last Updated: 01 Oct 2015 07:31 by Rumen Jekov
Created by: Henrik
Comments: 4
Category: Scheduler
Type: Feature Request
11

			
Completed
Last Updated: 22 Oct 2015 15:03 by ADMIN
Completed
Last Updated: 28 Jul 2016 13:32 by Niels
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: 14 Mar 2014 08:25 by ADMIN
ADMIN
Created by: Iana Tsolova
Comments: 1
Category: Scheduler
Type: Feature Request
3
Add posibility to import iCal compatible calendars into RadScheduler
Completed
Last Updated: 10 Jul 2014 12:30 by ADMIN
Completed
Last Updated: 19 Aug 2014 05:47 by ADMIN
Completed
Last Updated: 20 Sep 2016 10:59 by Christian
Completed
Last Updated: 19 Jun 2020 16:06 by ADMIN
Created by: Tan
Comments: 1
Category: Scheduler
Type: Feature Request
3
I will be working on a project that need to show appointments for 20+ resources. I looked at your demos/documentation for the scheduler and don't see any support for horizontal scrolling.
I would be great to have the scheduler scroll the resources horizontally while maintaining the same width for each resource column.

Thanks for your time.
Completed
Last Updated: 12 Feb 2013 11:59 by ADMIN
Completed
Last Updated: 30 Apr 2014 11:27 by ADMIN
Completed
Last Updated: 13 Oct 2014 10:37 by ADMIN
Completed
Last Updated: 03 Jun 2026 12:41 by ADMIN
Release 2026 Q2 SP1

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>

1 2 3 4 5