Custom data in full calendar jquery

0

I need to load custom data into full calendar jquery , such as id of that event.

I tried to do this:

title: '{{$reuniao->TXT_TEMAX_REUNI}}',
start: '{{$reuniao->getStart}}',
allDay: true,
id: '{{$reuniao->COD_IDENT_REUNI}}'
className: 'bgm-cyan'

To plot on the calendar however it does not. I need to do this by when I click I can send to the due page of the meeting.

    
asked by anonymous 10.01.2017 / 20:26

1 answer

0

I found my error, was at the end of the line of id is missing a , so the resolution was:

title: '{{$reuniao->TXT_TEMAX_REUNI}}',
start: '{{$reuniao->getStart}}',
allDay: true,
id: '{{$reuniao->COD_IDENT_REUNI}}',
className: 'bgm-cyan'
    
10.01.2017 / 20:35