私はjQueryweekcalendarを使用して、予定のあるWebベースのカレンダーを表示しています。setEventUserId
calEventにいくつかの変数を格納するようないくつかの組み込み関数。
このcalEventオブジェクトにカスタム変数を格納するにはどうすればよいですか?
何かのようなもの:
setEventCategoryId: function(calendarId, calEvent, calendar) {
calEvent.calendarId = calendarId;
return calEvent;
},
getEventCategoryId: function(calEvent, calendar) {
return calEvent.calendarId;
}
しかし、いつこのメソッドを呼び出すのですか?そして、変数を格納するためにこのコードを持っているだけで十分ですか?
どんな入力でも大歓迎です。