Disable other Bootstrap-datepicker view modes?

In Bootstrap-datepicker, whenever I click on the calendar title (February 2014) in the title, you get into the “months of the year” view. Is there a way to disable the ability to view other viewing modes or disable links without editing the plugin file?

Mb1beTz.png

+3
source share
1 answer

You can find this code in bootstrap-datepicker:

  case 'picker-switch':
    showMode(1);
  break;

and comment out the line showMode ().

If you want to contribute to bootstrap-datepicker, I think it is trivial that the execution of this line depends on the user option.

+1
source

All Articles