Search found 2087 matches

Rahulranjan, I have downloaded, compiled and run your code and it works fine. Then I studied it as to what have you done, however, I wasn't able to find any part in it that would implement a custom task editor. To implement the custom task editor, take please the code from the vanilla demo code . Th...
I cannot reproduce the problem. I freshly downloaded to a new directory, installed and started the example without any problems. My vue cli version is 3.7.0.

See the attached screencast.
vue-basic-trial-small.gif
vue-basic-trial-small.gif (2.81 MiB) Viewed 700 times
I do not have example I have written in Angular 5 but there is one Scheduler (unfortunately not Gantt) Angular 5 example. I hope you can take some inspiration from it. Gantt is extension of Scheduler so principles remain same.

I have no personal experiences with older versions of Angular.
Hello idrissb, I have written many of the React demos of Scheduler (in javascript) so I can answer at least a couple of your questions: More typescript examples: Everything what we have is published so at the moment we don't have additional typescript examples BryntumScheduler: You can do both depen...
Hello Rahulranjan, I've been trying to make it working, and I succeeded only in compilation of the project but it still throws an error. I believe that the major role plays the Angular version: you use 5 but the example was written and tested in version 7. I'm attaching my modified code (without bui...
You must return function from useEffect and destroy the Bryntum stuff in that function. Something like: useEffect(() => { // ... usuall stuff here return () => { schedulerRef.current.destroy(); gridRef.current.destroy(); dragRef.current.destroy(); } }, []); Disclaimer: I haven't tested the above cod...
BTW, this example uses Redux. Probably not exactly the way you want it but you can take it as inspiration: https://bryntum.com/examples/scheduler/ ... index.html
In Vue, especially if you use Vue Router, it happens that Vue destroys components but in the above case some underlying Bryntum instances are apparently not correctly destroyed. Make sure please that there is a componentWillUnmount function, that it is really called and that all used Bryntum compone...
Thank you for your answers. So putting aside our demo problem, could you prepare a demo, or send us your code that is giving you those errors? It is very difficult to give you any effective advice before running the problematic code. Therefore, I think, the fastest and most effective way would be to...
Let's untangle the problem by breaking it to pieces: 1. Can you compile and run our example as-is, without any changes? 2. Can you use gantt.umd.js in your application (without our example)? I'm asking because we know about the problem of combination: Our Angular Advanced demo + Gantt UMD. We will m...