Search found 2540 matches

Hello Saki,

This approach doesn't work either. The values are undefined. Please get one of your examples up and running and try it yourself. Need to come up with a proper solution to be able to define types for new fields. I would appreciate your help on this.

Thanks!

Hi Alex! just repeat it twice. This is a bit tricky. When you define a custom theme, you specify variables and import bryntum's scss file. So as an output you're going to have a css built automatically for the scss provided. How can I define different scss sources in one project? The only way I see ...

Hello Saki!

It doesn't work. When you specify classes like this, you give it priority over the real fields. So the grid has empty rows.

  public firstName = 'Peter';
  public lastName = 'Parker';

The value you set is spread around the grid

Снимок экрана 2022-08-11 в 11.03.22.png
Снимок экрана 2022-08-11 в 11.03.22.png (29.25 KiB) Viewed 697 times

The problem is solved! Good job!

SPF: PASS with IP 93.188.3.37

Снимок экрана 2022-08-11 в 10.57.29.png
Снимок экрана 2022-08-11 в 10.57.29.png (212.32 KiB) Viewed 406 times
Hi! Could you please suggest how to declare field types in a model class when you extend Model? I get typings error when I refer to fields as this.myField . Property 'myField' does not exist on type 'MyModel'. For example: import { Model, DataFieldConfig } from '@bryntum/schedulerpro' class PlayerMo...
Hi! Is it possible to: Extend 2 themes at the same time? For example, classic-light and classic-dark. Switch between 2 custom themes programmatically? Do all above in a Vue app? Product: SchedulerPro I would appreciate for a small tutorial on one of your Vue demos. Keep in mind I'm aware of the them...
SPF is NEUTRAL with IP 93.188.3.52. Here is the full source. I updated my real email with "my.email". Delivered-To: my.email@gmail.com Received: by 2002:a05:6402:3786:0:0:0:0 with SMTP id et6csp4620453edb; Tue, 9 Aug 2022 08:37:20 -0700 (PDT) X-Google-Smtp-Source: AA6agR48XM4A17j8TAVHIUWM7...
Hi! Every time I get an email from forum at bryntum.com Gmail treats it as a phishing email and shows this message to me: Be careful with this message Gmail could not verify that it actually came from bryntum.com. Avoid clicking links, downloading attachments, or replying with personal information. ...
Hi Alex, Thanks for creating a new ticket for the typings issue. Try to specify type for column, it will set up correct filters, editors and formatting. That might fix the issue, right. But nevertheless my testcase is valid. "type" config is not public on Column class. There is only proper...
Hi Alex, I have lots of related models. For example, I have Group Store, which looks like: { id : 1, title : 'Forwards', players: [ { id : 1, name : 'Kylian Mbappe' } , { id : 2, name : 'Lionel Messi' }, { id : 3, name : 'Neymar' } ], } So it's obvious there is a Players Store holding info of all pl...