twinssbc / Ionic-Calendar

A calendar directive for Ionic framework
http://twinssbc.github.io/Ionic-Calendar/demo
MIT License
159 stars 73 forks source link

How to click on event #136

Open Mohansameer opened 7 years ago

Mohansameer commented 7 years ago

In my project, I am try to click on event of selected date then I go to next page. So please tell me how to click on event view. Thank you.

twinssbc commented 7 years ago

@Mohansameer You can use event-Selected option as below and add the logic to navigate to other page in the onEventSelected method.

<calendar ... event-selected="onEventSelected(event)"></calendar>    

  $scope.onEventSelected = function (event) {
      console.log(event.title);
  };