前提・実現したいこと
Reactでカレンダーを使ったアプリを実装しています。
カレンダーにはFullcallendar(https://fullcalendar.io/)を利用しています。
このMonth viewとtimelineを使っているのですが、Month viewの日付をクリックした時にその日付のtimelineに飛ばしたいと思っています。しかし、ドキュメントを見てみても、month viewの日付をクリックした時にイベント発火の記述はありますが、プラグイン間の遷移の仕方がわかりません。
そもそもできないのでしょうか。
できるとすればどのようにすればいいのでしょうか。
ご教示お願いします。
発生している問題・エラーメッセージ
dayGridMonthの日付をクリックした時に、resourceTimelineDayのその日付に遷移したい
該当のソースコード
<FullCalendar defaultView="resourceTimelineDay" header={{ left: "prev,next today", center: "title", right: "resourceTimelineDay,dayGridMonth", }} locale="ja" plugins={[dayGridPlugin, timeGridPlugin, interactionPlugin, resourceTimelinePlugin]} ref={calendarComponentRef} weekends={calendarWeekends} events={calendarEvents} resourceAreaWidth="10%" resourceLabelText="サンプル" resources={members.map((member) => { return { id: member.id, title: member.name, }; })} scrollTime="08:00:00" //スクロールがデフォルトで表示する位置 />
あなたの回答
tips
プレビュー