0
I need to upload custom data to full calendar jquery
, such as the id
of that event.
I tried to do so:
title: '{{$reuniao->TXT_TEMAX_REUNI}}',
start: '{{$reuniao->getStart}}',
allDay: true,
id: '{{$reuniao->COD_IDENT_REUNI}}'
className: 'bgm-cyan'
To plot in the calendar but it does not. I need to do this so when click I can send to the meeting due page.
$reuniao
comes from php?– MarceloBoni
You know, man, this is a horrible way to pick constants (or variables) out of a class. Build a method.
– Not The Real Hemingway
yes is PHP, and using Laravel, the error is not in the title, it is in id
– Renan Rodrigues
discovered my mistake :\
– Renan Rodrigues
The id line lacks a ',' at the end, thus causing the error :D
– Renan Rodrigues