gantt
                                
                                 gantt copied to clipboard
                                
                                    gantt copied to clipboard
                            
                            
                            
                        Nextjs
Is it possible to use this with Next.js?
I tried to follow the react example but got the following error
error Error [ReferenceError]: window is not defined
at Object.
is there a working example with the latest version of Next?
@murrayleysrgu, by default, Next.js runs the code with the server-side rendering. You cannot run Gantt that way as it is a client-side application and requires the Window object and DOM.
You will need to add the following line to the page with the Gantt configuration:
"use client";
https://nextjs.org/docs/getting-started/react-essentials#the-use-client-directive
Here are the demos: https://files.dhtmlx.com/30d/5c0514c86ca9898058d2fc64bdfc8259/nextjs+GanttInstance-alternative.zip https://files.dhtmlx.com/30d/27c23572db2101a749a3168d1e8b7917/nextjs+GanttInstance.zip