Hello!
I'm using Apex 19.1 and I have a gantt chart. I want to move and resize tasks via mouse.
I have tried this Oracle JET cookbook example but I cannot get it to work: https://www.oracle.com/webfolder/technetwork/jet/jetCookbook.html?component=gantt&demo=taskManipulate
Currently I have oj-gantt element with following attributes:
<oj-gantt id="gantt"
selection-mode="multiple"
dnd.move.tasks="enabled"
on-oj-move="[[handleMove]]"
task-defaults.resizable="enabled"
on-oj-resize="[[handleResize]]">
</oj-gantt>
Do I also need javascript to make it to work? I have tried to implement javascript as shown in demo.js without success. I'm not very familiar with javascript.
My data is in Oracle database 12c.
Best regards,
Matti