Closed tbthiago closed 8 years ago
I put the editable option equals to true on clientOptions, but it's not working. The events are simply not editable.
<?= yii2fullcalendar\yii2fullcalendar::widget([ 'clientOptions' => [ 'defaultView'=> 'agendaWeek', 'lang'=>'pt-br', 'minTime'=> '06:00:00', //colocar como opcao 'maxTime'=> '23:00:00', //colocar como opcao 'allDaySlot'=> false, 'editable' => true, 'droppable' => true, ], 'header'=> [ 'left'=> 'prev,next today', 'center'=> 'title', 'right' => 'agendaWeek,agendaDay' ], 'events'=>$events ]); ?>
hmm, I'll take a look at this later that day... - thanks for adding the issue!
You miss:
selectable => true, selectableHelper => true
I put the editable option equals to true on clientOptions, but it's not working. The events are simply not editable.
<?= yii2fullcalendar\yii2fullcalendar::widget([ 'clientOptions' => [ 'defaultView'=> 'agendaWeek', 'lang'=>'pt-br', 'minTime'=> '06:00:00', //colocar como opcao 'maxTime'=> '23:00:00', //colocar como opcao 'allDaySlot'=> false, 'editable' => true, 'droppable' => true, ], 'header'=> [ 'left'=> 'prev,next today', 'center'=> 'title', 'right' => 'agendaWeek,agendaDay' ], 'events'=>$events ]); ?>