Open ben-power opened 8 years ago
@benben10 It's possible, in the timeSelected callback function, you can change the $scope.mode. For example,
$scope.onTimeSelected = function (selectedTime) {
if($scope.mode === 'month') {
$scope.mode = 'day';
}
};
Is it possible to click on a date in monthview and have it navigate to the weekview of that day? Or the dayview for that date?