简体   繁体   中英

How to remove week and Day view buttons from FullCalendar in laravel project?

I'm using FullCalendar in my laravel project and I want to remove week and day buttons from the header bar.

$calendar = Calendar::addEvents($data)
          ->setOptions([ //set fullcalendar options
              'firstDay' => 1,
              'height' => 'auto',
              'themeSystem' => 'bootstrap3',
              'columnHeader' => false,
              'aspectRatio' => 1,
              'allDayDefault'=> false, 

          ])->setCallbacks([
    'eventRender'=> 'function (event, element, view) {
        var dateString = event.start.format("YYYY-MM-DD");

        $(view.el[0]).find(".fc-day[data-date=" + dateString +"]").css("background-color", "#FAA732");
     }'
          ]);

      $subset = $data->map(function ($data) {
          return collect($data->toArray())
              ->only(['title','start', 'end'])
              ->all();
      });
      return view('events.calendar', compact('calendar','data'));

So, I want to remove those week and day view button s from fullCalendar.

I used 'allDayDefault'=> false and also allDay='false' but both of them are not working.

To disable another button then Month you can use right: 'month' in your calendar options and right: '' for get rid of month button. you have to add this following option into your setOption parameter.:

$calendar = Calendar::addEvents($data)
          ->setOptions([ //set fullcalendar options
              'firstDay' => 1,
              'height' => 'auto',
              'themeSystem' => 'bootstrap3',
              'columnHeader' => false,
              'aspectRatio' => 1,
              'allDayDefault'=> false,
              'header' => [
                    'left' => 'today prev,next',
                    'center' =>'title',
                    'right' =>'month'],
              .......

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM