Search found 1187 matches

Hi! I've opened an issue here to fix with the code you have used above: const global = typeof globalThis !== 'undefined' ? globalThis : typeof self !== 'undefined' ? self : null; Please check and confirm that this solution works for you. https://github.com/bryntum/support/issues/9018 Regarding to: i...

Hi!

En Locale is built-in default one and basically no need to pass it separately.

You can access English locale using LocaleHelper.locales.En

https://bryntum.com/products/gantt/docs/api/Core/localization/LocaleHelper#property-locales-static

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.