Our pure JavaScript Scheduler component


Post by colinkelly2020 »

Hey,

My company uses a scheduler already which I want to update to your product, but not sure of some of the config I need. I need the scheduler to only use days with no time. When users places bookings in they don't specify any times, just how many hours long the task is. Is it possible to completely remove time from displaying in the component?

Thanks for your help
Colin

Post by mats »

Sure, you can configure the scheduler to just show dates. Can you please post a screenshot of your desired UI?

Post by colinkelly2020 »

The image attached is from our current system, we style it based on the client. Its users broken by roles and projects. And we have additional information we show on each booking. Mostly would need to remove any time references like on hover over a booking. And when a user adds a booking we would want to use our own creation screen since we have a lot more data needed. Is this all possible? Sorry for all the questions finding your docs a little tricky to navigate about.
The data is all test data, but they are just users and roles.

Thanks
Attachments
1.png
1.png (80.04 KiB) Viewed 984 times

Post by mats »

That should be easy to replicate using our Scheduler.
Mostly would need to remove any time references like on hover over a booking.

Just configure our displayDateFormat in the view presets you'll use. https://bryntum.com/docs/scheduler/#Scheduler/preset/ViewPreset#field-displayDateFormat
And when a user adds a booking we would want to use our own creation screen since we have a lot more data needed. Is this all possible?
Yes sure, either use your own editor (return false from beforeEventEdit listener) https://bryntum.com/docs/scheduler/#Scheduler/feature/EventEdit#event-beforeEventEdit

or configure our editor to add your own custom fields to our popup: https://bryntum.com/docs/scheduler/#Scheduler/feature/EventEdit#config-extraItems

Post Reply