fullCalendar
Implementation of www.fullcalendar.io calendaring component. Component based on https://github.com/CroudTech/vue-fullcalendar
Last updated
Was this helpful?
Implementation of www.fullcalendar.io calendaring component. Component based on https://github.com/CroudTech/vue-fullcalendar
Implementation of www.fullcalendar.io calendaring component.
Component based on https://github.com/CroudTech/vue-fullcalendar
The live component:
reads events from the field model
passes those events into the calendar as the field value
merges schema.config over a default config where defaultView starts as month
type
string
Must be fullCalendar
model
string
Model path containing the calendar event array
config
object
Calendar configuration object passed into the underlying component
Example:
{
"type": "fullCalendar",
"model": "events",
"config": {
"defaultView": "month",
"editable": true
}
}The current implementation wires these schema callback functions:
eventSelected(...args)
eventDrop(...args)
eventResize(...args)
eventCreated(...args)
eventRender(...args)
eventMouseover(...args)
eventMouseout(...args)
dayClick(...args)
These are JavaScript callback functions on the field schema, not *_actions arrays.
If you do not provide config.defaultView, the component defaults to month.
The component passes the full field schema through to the underlying calendar component with v-bind=\"schema\".
The published docs previously referenced *_actions keys, but the live component code currently uses direct schema callback functions instead.
Last updated
Was this helpful?
Was this helpful?