Hello,
I would like to use UUIDdecimal CF for the taskID rather than an auto-enter Serial Number. However I get Integer Notation like this:
2.25640703445567e+37, rather than a number like this:
22564070344556677882256407034455667788.
I have toyed with other implementations of FullCalendar and have gotten it to work, but the related libraries were different versions and I can't recall how I solved the same problem then.
How can I solve this?
Example
{
"allDay" : false,
"color" : "#FF0000",
"end" : "2018-05-30T23:00:00**TIMEZONE**",
"id" : 9,
"start" : "2018-05-30T21:00:00**TIMEZONE**",
"title" : "New Task"
},
{
"allDay" : false,
"color" : "#E69138",
"end" : "2018-06-01T23:30:00**TIMEZONE**",
"id" : 2.25640703445567e+37,
"start" : "2018-06-01T22:30:00**TIMEZONE**",
"title" : "Old Task"
}