This is a migrated thread and some comments may be shown as answers.

Rad Calender Multi Month Mode

1 Answer 30 Views
Calendar
This is a migrated thread and some comments may be shown as answers.
Kyle
Top achievements
Rank 1
Kyle asked on 30 Sep 2013, 08:59 PM

Hello,

I would like to Use Rad Calendar Multi Month Mode to display two months. By default  the current month (on the right) and last month ( on the left). When I navigate to the next month I would like the current month (on the left)  and next month on the right.

Is this possible with Rad Calendar?

 

Kyle

1 Answer, 1 is accepted

Sort by
0
Eyup
Telerik team
answered on 03 Oct 2013, 03:07 PM
Hello Kyle,

You can use the following approach to limit the navigation step:
<script type="text/javascript">
    Telerik.Web.UI.RadCalendar.prototype._navigateNext = function () {
        this._clearKeyBoardNavigationProperties();
        this._navigate(1);
        return false;
    }
    Telerik.Web.UI.RadCalendar.prototype._navigatePrev = function () {
        this._clearKeyBoardNavigationProperties();
        this._navigate(-1);
        return false;
    }
</script>

Hope this helps. Please give it a try and let me know if it works for you.

Regards,
Eyup
Telerik
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to the blog feed now.
Tags
Calendar
Asked by
Kyle
Top achievements
Rank 1
Answers by
Eyup
Telerik team
Share this question
or