Search found 1195 matches

Hi, Mattis. I can suggest you this quick fix. Open bryntum-react-shared/BryntumScheduler.js find shouldComponentUpdate(nextProps, nextState) method and add 'listeners' to excludeProps Like this. excludeProps = ['listeners', 'events', 'resources', 'eventsVersion', 'resourcesVersion', 'timeRanges', 'c...
Hi! Angular issues with dev server ( npm run start ) were resolved. You can wait for the latest nightly build or manually fix it by replacing poilyfill import in ../src/polyfills.ts file inside demo folder. Replace this import 'core-js/es6/reflect'; with import 'core-js/es7/reflect'; This should fix...
Hi TFAlex,

According to Maxim's latest comment please remove the <debug>...</debug> code by yourself.
We will update the sources for the next release to exclude this code.
No further code removal actions from you is needed.
Hi TFAlex,

This check helps because this is the only problem you have then.

Could you attach sample sources you use so we can check if any react project adjustments can be made to make it compatible with our current sources.
Hi TFAlex,

Please check.
This will give info for us to continue this discussion.
Hi TFAlex,

Does it work for you if you replace the code inside eval expression with IE11 compatible one?
eval("ClassDefEx = class " + (ClassDef.$name || ClassDef.name) + "Ex extends ClassDef {};");
TFAlex, Our sources are not compatible with IE11 while it doesn't support ECMA Script features like imports or template strings. You can see Browser compatibility here for import feature. https://developer.mozilla.org/ru/docs/Web/JavaScript/Reference/Statements/import Our "Importing EcmaScript ...
Hi, SIM-LTD!
Could you please provide the source code for the page you used for creating screenshots and your testing?
Hi, bjmac!

Unfortunately Scheduler doesn't support variable row height for now.
But it is in plans to add this functionality later this year.
If this is very important or urgent, please navigate to https://www.bryntum.com/services/.
Hello! You can setup your own tootilp display format (template) and hoverDelay like this new Scheduler({ features : { eventTooltip : { template : data => ` <div class="b-sch-event-tooltip"> ${data.startText} -> ${data.endText} </div>`, hoverDelay : 5000 } } }); Please refer to this doc. ht...