все, что я использую fullcalendar, но я не понял, как я могу изменить формат даты arg.start /arg.end в YYYY-MM-DD, кто мне может помочь?
Я использую Fullcalendar 4.4.0 С наилучшими пожеланиями Albe
select: function(arg) {
var title = prompt('Event Title:');
var start = '2020-04-17';
var end = '2020-04-17';
if (title) {
calendar.addEvent({
title: title,
start: arg.start,
end: arg.end,
allDay: arg.allDay
});
var tt = calendar.formatDate(arg.start, {
year: 'numeric',
month: '2-digit',
day: 'numeric'
});
$.ajax({
url: 'insert.php',
type: "POST",
data: {title:title, start:start, end:end, tt:tt },
dataType: 'html',
success: function (msg) {
alert(msg);
}
})
}
calendar.unselect()
},