I can't find any options to remove Gantt footer.
For now I'm using ability to extend Gantt plugin:
But I think it would be better to have some option to disable footer.
For example:
1. Initialize Gantt
2. Check in the method
For now I'm using ability to extend Gantt plugin:
var oldGantt = kendo.ui.Gantt;var GanttExtended = kendo.ui.Gantt.extend({ init: function(element, options) { oldGantt.fn.init.call(this, element, options); }, _footer: function() { this.footer = $([]); }});kendo.ui.plugin(GanttExtended);But I think it would be better to have some option to disable footer.
For example:
1. Initialize Gantt
$('#gantt').kendoGantt({ footer: false});var Gantt = Widget.extend({ _footer: function() { if (!this.options.editable || !this.options.footer) { return; } ... },});