1

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?

Shrinivas
  • 824
  • 4
  • 12
  • 26

1 Answers1

0

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

rsobon
  • 1,012
  • 2
  • 12
  • 26
  • thank you rsobon for the reply. I want to add template for gantt columns. I followed http://www.telerik.com/forums/gantt-custom-column-template and implemented checkboxes. However It is not giving those flexibilities which kendo grid used to provide. – Shrinivas Feb 24 '17 at 10:16