Completed
Last Updated: 03 Jun 2026 12:41 by ADMIN
Release 2026 Q2 SP1
Pat Henry
Created on: 09 Sep 2019 10:57
Category: Scheduler
Type: Bug Report
2
The tooltips on the navigation buttons display "next day", and "previous day" when navigating month and week.

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 comment
ADMIN
Rumen
Posted on: 03 Jun 2026 12:41

Hi everyone,

Starting with the 2026 Q2 SP1 release, the localization will be updated so that the navigation buttons display only “Previous” and “Next”, without specifying “day”, “week”, or “month”. This change aligns the behavior with the Kendo UI Scheduler, as demonstrated here: https://demos.telerik.com/kendo-ui/scheduler/index

If you still prefer more descriptive tooltips such as “Next day”, “Next week”, or “Next month”, the previously shared workaround by Pat remains valid and can continue to be used.

 

Regards,
Rumen
Progress Telerik

Stay tuned by visiting our public roadmap and feedback portal pages! Or perhaps, if you are new to our Telerik family, check out our getting started resources