Search found 1185 matches

Hi! Did you try write something to globalThis for the localization in your app? It is not expected. We provide these methods for managing locales: https://bryntum.com/products/gantt/docs/guide/Gantt/customization/localization#publishing-and-applying-locales If you use LocaleHelper.publishLocale we e...
Hi! Could you please send us some debug data on each variable from this code? const global = typeof self !== 'undefined' ? self : typeof globalThis !== 'undefined' ? globalThis : null; What is self there and what is result of global ? Also please try if that works when you replace code with: const g...

Hi, awacode!

Could you please try today's released version 5.6.9 with the Vue rendering fix and confirm if that works for you.

Hi! Gantt has an ability to set timeline start. Please check this property https://bryntum.com/products/gantt/docs/api/Gantt/view/Gantt#property-visibleDate Also you may use https://bryntum.com/products/gantt/docs/api/Gantt/view/Gantt#function-scrollToDate For example this demo shows use of visibleD...
Hi! We have introduced data lazy loading for stores in 6.0.0 alpha 2 version. Please check docs here: https://bryntum.com/products/scheduler-next/docs/guide/Scheduler/whats-new/6.0.0#lazy-data-loading-infinite-scroll Demo app is available here: https://bryntum.com/products/scheduler-next/examples/in...
Hi! scheduler.timeRanges is not a feature instance. It should be scheduler.features.timeRanges Docs for this feature https://bryntum.com/products/schedulerpro/docs/api/Scheduler/feature/TimeRanges Docs for using features https://bryntum.com/products/schedulerpro/docs/guide/Grid/basics/features Pleas...
Hi! It is a fix for unhandled exceptions. But you still need to configure application as I mentioned above. This won't work without a fix in application code even in 5.6.9. Custom date in data should be in format like '2024-02-01T10:00:00' If it has another format then you should configure field acc...

Hi!

We are waiting for a test case to check this.

Hi!

Did you try to follow the instructions in this guide?

https://bryntum.com/products/scheduler/docs/guide/Scheduler/customization/timezone

If that didn't help, please attach some application as a test case which we can run and see.

One more addition to your code. To make this work please consider declaring customDate field with a proper date type. class AppTaskModel extends TaskModel { static get fields() { return [{ name: 'customDate', type: 'date' }]; } } then you may configure Project with taskModelClass export const projec...