fullcalendarプラグインを変更して、異なるクリック方法dayClick
などをCookieに保存するにはどうすればよいですか?次回このカレンダーが開かれたときには、ユーザーの設定がデフォルトになります。答えは次のCookieコードを作業のhttps://raw.github.com/carhartl/jquery-cookie/master/jquery.cookie.jsfullcalendarユーザオプションを覚えています。 Cookieの月/週/日
更新:
すでにクッキープラグイン使用して、必要
var calendarView = (!$.cookie('calendarDefaultView')) ? 'month' : $.cookie('calendarDefaultView');
$calendar.fullCalendar({
defaultView: calendarView,
viewDisplay: function(view){
$.cookie('calendarDefaultView', view.name, {expires:7, path: '/'});
},
バージョン2では、これを動作させるためにviewDisplayをviewRenderに変更しなければなりませんでした。すなわち、 viewRender:function(view、element){.... – PhoebeB