Open Mohansameer opened 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);
};
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.