Ysrninja
Ysrninja

Reputation: 189

Angular bootstrap calendar

Here is a pretty clean and easy to use calendar made in Angularjs.

https://mattlewis.me/angular-bootstrap-calendar/

If you click on the number at the edge of any day, you'll be switched to the day view. I want to disable that but I have no idea how to.

Please help.

Upvotes: 1

Views: 1668

Answers (2)

akjha627
akjha627

Reputation: 215

as per the latest version, this has been changed to on-view-change-click="false"

Upvotes: 2

rave
rave

Reputation: 1032

you should add the

on-drill-down-click="false"

attribute to the calendar directive, together with the other options

<mwl-calendar
   .... 
   on-drill-down-click="false" >
</mwl-calendar>

https://github.com/mattlewis92/angular-bootstrap-calendar#documentation

Upvotes: 5

Related Questions