FullCalendarを使って、ビュー画面でカレンダーを表示させたいが、カレンダーが表示されない。
初学者なので詳しく教えていただけるとありがたいです。
記事等を読んでとりあえず表示させたいのでそのまま記載しているのですが表示がされません。
下記に参考にした記事と、記載したコードを貼りますのでよろしくお願いいたします。
gemファイルは追加してbundle installも完了してます。
他にも必要なファイル等あればご連絡ください。
https://github.com/bokmann/fullcalendar-rails
/application.jsに下記を追記 //= require_tree . //= require jquery //= require jquery_ujs //= require moment //= require fullcalendar //= require fullcalendar/locale-all $('#calendar').fullCalendar({});
/application.scssに追加 *= require fullcalendar
/index.html.haml %h1 Listing events %table %thead %tr %th Title %th Description %th Start date %th End date %th %th %th %tbody - @events.each do |event| %tr %td= event.title %td= event.description %td= event.start_date %td= event.end_date %td= link_to 'Show', event %td= link_to 'Edit', edit_event_path(event) %td= link_to 'Destroy', event, method: :delete, data: { confirm: 'Are you sure?' } %br = link_to 'New Event', new_event_path #calendar
あなたの回答
tips
プレビュー