-
here my code let ec = new Calendar({
target: document.querySelector("#calendar"),
props: {
options: {
//... other options ...
datesSet: function(info) {
fetchEventToServer(info.startStr, info.endStr);
},
events: [], // how do i update this based on the datesSet
},
},
}); |
Beta Was this translation helpful? Give feedback.
Answered by
Akhmami
Jun 13, 2024
Replies: 1 comment
-
Fixed using eventSources |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
Akhmami
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Fixed using eventSources