Thank you ^^
where itās always been. i dont have any examples of HOW to set up your data calls to populate that input. but itās there and you have an example of what it should look like.
Just updated and entered the information into the new information field but unfortunately the calendar disappears completely.
im sure it caused an error. i missed an apostrophe. can you update try again?
Update 2.4.102 is running just Thursday and Sunday is not working how it should. Update 2.5.0 lost itself in the ether ^^
So far itās working quite well with the update, but Iām guessing that the information is limited to 7 details. In order to include lunch breaks, I formulated an entry for the morning and afternoon. The days from Wednesday are no longer displayed with the times, but remain grayed out.
Please see this page to learn more about this feature.
businessHours - Docs | FullCalendar.
I would think You should be able to but perhaps itās not actually available.
Any chance you can share a screenshot of what youāre talking about? Iām not sure I understand fully
Hi @jared.gibb
Iām getting this error, not sure if thereās something really obvious missing in my setup but I havenāt been able to find the problem
The plugin Full Calendar Scheduler Suite / element BAFC - Calendar Element threw the following error: TypeError: Cannot read properties of null (reading āsplitā)
at eval (PLUGIN_1637689640773x255337177092194300/Full-Calendar-Scheduler-SuiteāupdateāBAFCāCalendar-Element-.js:1171:44)
for this can you show how you have this input setup? also what your delimiter is (the 5th thing you can set from top down)
Event Identifier List
I think Iāve resolved this error nowāthe delimiter is a comma. All the optional event info is blank for now
Got it. DB was the problem
@jared.gibb is it possible to implement a right click menu for Indikator deklarations or Event Management Workflows like delete or modify?
<style>
#customContextMenu {
display: none;
position: absolute;
z-index: 1000;
width: 150px;
background-color: #fff;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
border-radius: 5px;
overflow: hidden;
}
#customContextMenu ul {
list-style: none;
padding: 0;
margin: 0;
}
#customContextMenu li {
padding: 10px;
cursor: pointer;
}
#customContextMenu li:hover {
background-color: #f0f0f0;
}
</style>
<div id="customContextMenu">
<ul>
<li id="deleteEvent">Event lƶschen</li>
<li id="editEvent">Event bearbeiten</li>
</ul>
</div>
<script>
document.addEventListener('DOMContentLoaded', function() {
var contextMenu = document.getElementById('customContextMenu');
document.querySelectorAll('.calendar-event').forEach(function(eventElement) {
eventElement.addEventListener('contextmenu', function(e) {
e.preventDefault();
var eventId = eventElement.getAttribute('data-event-id');
contextMenu.style.display = 'block';
contextMenu.style.left = e.pageX + 'px';
contextMenu.style.top = e.pageY + 'px';
contextMenu.setAttribute('data-event-id', eventId);
});
});
document.addEventListener('click', function(e) {
if (contextMenu.style.display === 'block') {
contextMenu.style.display = 'none';
}
});
document.getElementById('deleteEvent').addEventListener('click', function() {
var eventId = contextMenu.getAttribute('data-event-id');
if (eventId) {
bubble_fn_deleteEvent(eventId);
}
});
document.getElementById('editEvent').addEventListener('click', function() {
var eventId = contextMenu.getAttribute('data-event-id');
if (eventId) {
alert('Bearbeitungsfunktion fĆ¼r Event ' + eventId + ' wird noch implementiert.');
}
});
function bubble_fn_deleteEvent(eventId) {
bubble_fn_deleteEntry(eventId);
}
});
</script>
I feel like I saw another plugin floating around to create custom context menus. I donāt have a method built into the plugin for that BUT you should be able to use left click for all that. Not as intuitive BUT itās an alt option that works
How is it with a width and color Adjustment for the Seperator Linies of the days in the ResourceWeekview or fourDays View? Or a Floating option for the Recources Header?
@jared.gibb Hello again. I donāt know why but the appointments are jumping two times all the time when you move them to another Time and Resource. it seems very buggy to users. Can you manage it somehow?
I donāt know what you mean. Care to share a screen recording?
If you place the calendar on a page by itself do you get the same experience.
If so, can you please share that barebones setup with me and Iāll take a look. If not, then thereās another script interfering with the calendar code and thatās beyond the support I will provide for the plugin.
Amazing plugin! I noticed that after installing the plugin, a number of elements became misaligned and icons were being cut off. These issues went away after uninstalling. Has anyone else seen this?
I have seen it. Iāve never really been affected by it. Stupid CSS conflicts.
Thanks Jared. Is there any workaround or solution to address these CSS conflicts?