Search found 2540 matches

Hi! There are few issues with the types. All of them are small, so I combined them in one post. _1. https://bryntum.com/docs/scheduler-pro/api/Core/data/field/IntegerDataField Real type is "integer". "int" is an alias. Worth to mention this in docs. _2. Filters do not work right ...
Hi! Please produce typings for renderData argument of column renderer function. const columns: Partial<ColumnConfig>[] = [ { text: 'Groups', field: 'title', flex: 1, }, { text: '#', field: 'players', width: 20, align: 'right', // TODO: use Bryntum typings instead renderer({ value } : { value: Array ...
I've found a part of the code where you define the relation: lib/Scheduler/model/ResourceTimeRangeModel.js static get relationConfig() { return [ /** * The associated resource, retrieved using a relation to a ResourceStore determined by the value assigned * to `resourceId`. The relation also lets yo...
Hi! I want to have a Grid Store of a specific class. But I don't want to create a new instance, I want to declare the type only. Similar like it's possible to declare modelClass on the Store. So it would be nice if storeClass is supported (or any other option): class GroupStore extends Store { stati...
Hello team! I cannot use GridConfig as a type because there is no stripeFeature in it. Since frameworks use nameFeature notation, it would be nice to have all features listed in the GridConfig typings. Same for scheduler and schedulerpro. Thanks! Testcase: import { GridConfig, ColumnConfig } from '@...
Hello team! We're trying to update our Vue project based on SchedulerPro 5.0.5 to 5.1.1 version. I see you have improved the type definitions. For example, here is build/schedulerpro.d.ts file and "mode" field described for "SchedulerProConfig" type: // 5.0.5 mode: string // 5.1....
Hello team! Please introduce the 'type' on your DataField and all its children. If you look at the docs of StringDataField you can see it recommends to create a new Model and pass an array of field configs specifying the "type". So this config should be public. class Person extends Model {...

Hi Arcady! Thanks for your answers. Good to know that full basic Scheduler version is shipped with Pro version. Cheers!

Hello Mats, I'm trying to find information about using the recurring events feature in Scheduler Pro. Any updates about the progress you have? I've found this ticket (https://github.com/bryntum/support/issues/792), but it has no milestone. I see the complexity is to make Scheduler Engine work with o...
as currently as an alternative we have to switch to horizontal mode to print. @nagasain, what was you solution? Setting schedulerpro.mode = 'horizontal' is not supported. Did you switch to horizontal mode in your app too? Or you created a new horizontal scheduler instance dynamically before export?