How to customize a column using template in kendo gantt chart?

1.3k Views Asked by At

I would like to add checkbox to my gantt chart which is a kendo gantt widget. In kendo grid this can be achieved using custom templates. How do I achieve the same thing in kendo gantt?

1

There are 1 best solutions below

1
On

According to docs you can customize templates for

But you can't use templates for Gantt's columns. You didn't specify where exactly you would like to have your checkbox, but I'd assume it's for every task.

You can either customize the template for edit popup for each task, or you can simply add editable column for the schema field with type "boolean" to have a checkbox (you need to double click the "true/false" value to edit) example dojo