Questions Tagged custom
How to set a custom class on Bubble in Angular project?
Answered: You can set a custom CSS class using the config:
const bubble = new DayPilot.Bubble({
theme: "mybubble",
// ...
});
All CSS classes used in the bubble will be prefixed with "mybubble_" ins...
Clean solution to import custom scheduler theme with prefix CSS in Angular project
Answered: Two steps are required: 1. Include the theme in the global CSS (styles.css):
@import url('themes/your_theme.css');
2. Activate it using the "theme" config property:
config: DayPilot.SchedulerCo...
TimeHeader customization hidden after scrolling
Answered: By default, the Scheduler displays a special overlay div over long time header cells during scrolling: http://doc.daypilot.org/scheduler/floating-time-headers/ It should copy the custom time header H...
Scheduler - HeaderRow Start at 23 o`clock
Answered: Yes, it's possible. The StartDate must be set to the first day. You need to use ShowNonBusiness="false" option. Then you will be able to hide individual time columns using BeforeTimeHeaderRender even...
How to add custom data to event?
Answered: Event customization was not supported in the Lite version until 3.1 release. http://www.daypilot.org/daypilot-lite-for-asp-net-webforms-3-1.html In 3.1 and later versions you can use BeforeEventRende...
Questions 1-5 of 5