I love the calendar management tools in Wappler. I’ve checked it out and was able to quickly build a calendar using data however I need a view that shows all my employees (or a filtered group) listed down the left side and the days of the week across the top.
This way we can look at our week and see quickly who is NOT scheduled etc. Has anyone created such a calendar or is their a feature in the calendar view that I am missing?
Scheduling is a paid feature of the Full Calendar plugin, though it's usable in full on a free trial:
Because it's a paid version it's not available with the Wappler calendar component, but you can use javascript to do this:
This post pretty much has the code you need to get a working version linked to Wappler server connect data (you may need to modify alongside the full calendar docs to get exactly what you need).
Check this to initialise the basic calendar (without using the Wappler component):
Extended to this to add the resources view and data:
I have it up and running and it works really well. It's a bit more trial and error to get there than with a built in option!
Thanks! I would absolutely pay for this functionality if I can demo it for the people in my office. I’ll set aside some time next week to give it a shot with our data!
apologies for my ignorance but i’m not sure where to start. Are we somehow extending the wappler integration or starting with a new calendar as a separate project and connecting it to the wappler server connect?
I’m really excited to give this a try but I’m not sure how to start.
It may be possible to extend the Wappler integration, but I’d suggest it’s easier to try and do it using Javascript.
This is a demo codepen from the FullCalendar docs for the scheduler component:
Instead of using the Wappler component you’ll need to add the calendar in manually. This means adding the js and css scripts in the head. You can get them via cdn from the link below, or download them from the fullcalendar site:
You’ll then need to add a calendar to your page:
<div id='calendar'></div>
and add Javascript (this is the JS for the Codepen above), if you change the id on the page make sure you change it in the Javascript:
where the bit in brackets is a server action from your page. Make sure you add a response step like:
So no need for a separate project, and it’s using javascript instead of the Wappler component. It’s not something I’m great with myself but it’s worth persevering as it opens the door to being able to use lots of new things alongside Wappler.
I hope that helps a bit. Once you get your head round it you should be able to extend the functions of you calendar by changing the Javascript using the docs: https://fullcalendar.io/docs
Most of the time there are code pens for each feature to give you a hand.