Button Next/Previous month

Hello,

At month view , I want to put button next/previous month outside calendar? Please help me how to customize that and the function that control these buttons.

Thanks.

You can use any kind of custom button, and call from onclick code similar to next

var new_date = scheduler.date.add(scheduler._date,1,scheduler._mode) scheduler.setCurrentView(new_date);

Thanks so much.

It works well.