Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Clicking day navigate to weekview #41

Open
ben-power opened this issue Jan 19, 2016 · 1 comment
Open

Clicking day navigate to weekview #41

ben-power opened this issue Jan 19, 2016 · 1 comment

Comments

@ben-power
Copy link

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?

@twinssbc
Copy link
Owner

@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';
        }
    };

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants