Our state of the art Gantt chart


Post by vanik »

Hi Team,
I have another issue, the Bryntum Splitter is not appearing in my example code. I have attached entire code for your reference.

horizontal_splitter_not_working.png
horizontal_splitter_not_working.png (187.72 KiB) Viewed 334 times

Thanks,
Vani

Attachments
gantt-schedulerpro.zip
(2.76 MiB) Downloaded 48 times

Post by alex.l »

Hi vanik,

I checked your example. Looks like you didn't use wrappers and inject our components directly. We do recommend to use wrappers, see the guide here: https://bryntum.com/docs/gantt/#Gantt/guides/integration/react.md#wrappers

And please check our example which do the same, but uses wrappers, that is correct: https://bryntum.com/examples/gantt/frameworks/react/javascript/gantt-schedulerpro/build/index.html

So, your code will be looking like this:

            <div style={{
                display:'flex',
                flexDirection:'column',
                flex:1
            }}>
                <BryntumGantt {...ganttConfig} ref={ganttRef}/>
                <BryntumSplitter />
                <BryntumSchedulerPro {...schedulerConfig} ref={schedulerRef}/>
            </div>

All the best,
Alex

All the best,
Alex


Post Reply