Search found 2087 matches

Hello Odiya, I would need a clarification here as to what the key problem is: Is it that React renderer updates only first time upon data change? (This is a new bug I'll create an issue for that.) Is it that React renderer does not update upon React state changes (Solution for that is shown in the a...
I've run you code and here are my findings and suggestions: There were 2 console errors which I fixed by commenting the offending sections. The console errors might be innocent or fatal as well, so it is always a good idea to fix them before everything else. The way you work with data is very unusua...
Regarding the time ranges not showing in the showcase you have posted, I have changed the calendars const to hold calendar configurations (not instances) and it works. The workable code: const calendars = [ { id: "calendar", name: "Calendar", intervals: [ { recurrentStartDate: &q...

Yes, Angular does not provide for a "config" object that would wrap all properties. You have to change/add the value in schedulerConfig PLUS adjusting/adding to html template.

The tricky part here is that you have a custom feature and the wrapper knows only built-in features. For your feature to work you need to wrap it in a config object and then use that. app.config.ts: export const customConfig = { features : { daySelector: /* daySelector config */ } } app.component.ts...

Hello Mark, does the scheduler container (dialog/modal) have a height defined? That would be the first guess. If that does not help, give us some steps to reproduce or a runnable showcase.

Unfortunately, this is not currently supported because the renderer is not called during the dragging, only after drop. It would be nice to have it so I created a feature request: https://github.com/bryntum/support/issues/7569

Let's try the following: Let's not create any custom *d.ts file. You're declaring JavaScript modules in it and that is not needed. Generally, we do not use any javascript source files from Scheduler. Everything that we need to import is included in @bryntum/scheduler and @bryntum/scheduler-angular ....
You've posted in Scheduler, however, the screenshot looks like Calendar. If it is a Calendar, then you need to switch sidebar off (https://bryntum.com/products/calendar/docs/api/Calendar/view/Calendar#config-sidebar). Then you need to disable modes other than day and week (https://bryntum.com/produc...

Thank you very much Mark. I'm away till next week but I'll take it up next Monday; then I'll let you know the results.