twinssbc / Ionic2-Calendar

A calendar component based on Ionic framework
https://ionic-calendar-demo.stackblitz.io
MIT License
388 stars 197 forks source link

Is it possible to show left and right arrows in week view to move to next and previous week. #23

Closed severus1990 closed 7 years ago

severus1990 commented 7 years ago

Is it possible to show left and right arrows in week view to move to next and previous week. Now only swipe is possible

twinssbc commented 7 years ago

@severus1990 I think you can either add the button in the navbar or modify the weekview code to add them. In the click callback method, you just need to set the currentDate to the day in next or previous week. Similar to what happens on the today button in the demo page.

     today() {
        this.calendar.currentDate = new Date();
    }
severus1990 commented 7 years ago

Thanks it worked!!

divijm commented 7 years ago

Can you show how you did this please @severus1990? Thanks