Add new tasks by keyboard

Hi guys,

we’re still evaluating your gantt chart and integrate it into an Angular directive, but now we have a further question. Is it possible to add new lines/rows by keyboard not only by add-buttonb ‘+’?

For many new entries it would be much easier to record.

Thanks in advance!
Simon

Gantt itself doesn’t provide such functionality, but you can use any third-party key-handling library - for example MouseTrap (craig.is/killing/mice)

Mousetrap.bind('ctrl+a', function(e) { gantt.addTask(); return false; });