{Plugin} - Full Calendar Scheduler Suite

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.

1 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?

1 Like

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
Screenshot 2024-05-06 at 8.06.01 PM

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

1 Like

@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

1 Like

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?

Screenshot 2024-06-28 at 11.03.15 PM


Screenshot 2024-06-28 at 11.06.57 PM

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?