-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support adding create, view and edit templates #6
Comments
Hey man with this feature are you thinking of allowing the developer to just modify the template that gets shown on event click or modify the entire behavior that occurs on an event click? |
I've been thinking of allowing the developer to modify the template. <scheduler-component
default-view="month"
editable week-numbers>
<scheduler-view-element>
<!-- for example the default template of this element is a dialog that
gets shown when the user click on event,
with the title of event as header, etc. -->
</scheduler-view-element>
<scheduler-create-element>
<!-- The default behavior of this element is a dialog that gets shown
when a user select a slot from the scheduler -->
<template>
<!-- The developer can provide the template (content) of this element,
for example an input for the event's title and a text area
for the event's description-->
</template>
</scheduler-create-element>
</scheduler-component> What do you think ? |
The basic implementation of the full calendar library doesn't offer view and edit functionalities.
The purpose of the scheduler-component is to provide a highly customizable calendar that brings features in more declarative way. Furthermore, the goal is to facilitate the integration of additional features without worrying about the internal implementation of the fullCalendar library.
This feature will allows developers to provide the scheduler component with their view, create & edit templates.
Also the scheduler component will offer a default implementation of :
The text was updated successfully, but these errors were encountered: