I need to pass the mouse to see the name of the event, at the moment if the name is too big I can not see, as in the example below:
I'musingfullcalendar
tomanagemyeventcalendar,andmycodeisconfiguredlikethis:
$('#calendar').fullCalendar({//putyouroptionsandcallbackshereselectable:true,editable:true,events:[@foreach($celula->reunioesas$reuniao){title:'{{$reuniao->TXT_TEMAX_REUNI}}',start:'{{$reuniao->getStart}}',allDay:true,id:'{{$reuniao->COD_IDENT_REUNI}}',className:'bgm-cyan'},@endforeach],select:function(start,end,allDay){startDisplay=$.fullCalendar.formatRange(start,start,'DD/MM/YYYY');$("#addEvent").show();
$("#editEvent").hide();
$("#addNew-event").modal("show");
$("#addNew-event input:text").val("");
$("#getStart").val(start);
$(".getStartDate").val(startDisplay);
$("#getEnd").val(start);
$('input[type=text][name=TMP_HORAX_REUNI]').val("{{$celula->TMP_HORAX_CELUL}}");
$('input[type=text][name=TXT_RUAXX_REUNI]').val("{{$celula->TXT_RUAXX_CELUL}}");
$('input[type=text][name=TXT_BAIRR_REUNI]').val("{{$celula->TXT_BAIRR_CELUL}}");
$('input[type=text][name=TXT_CIDAD_REUNI]').val("{{$celula->TXT_CIDAD_CELUL}}");
$('input[type=text][name=TXT_ESTAD_REUNI]').val("{{$celula->TXT_ESTAD_CELUL}}");
$('input[type=text][name=TXT_NUMER_REUNI]').val("{{$celula->TXT_NUMER_CELUL}}");
$('input[type=text][name=TXT_COMPL_REUNI]').val("{{$celula->TXT_COMPL_CELUL}}");
},
eventClick: function(event, element) {
$("#addEvent").hide()
$("#editEvent").show().data("ev", event);
$("#addNew-event").modal("show");
$("#addNew-event input:text").val("");
$("#eventName").val(event.title);
}
});
So I need to pass the mouse, it appears the whole title of the event. How to do this?