This question is locked. New answers and comments are not allowed.
How can I set hyperlink to the GanttColumn?
I try it.
$column
=
new
\Kendo\UI\GanttColumn();
$column
->field(
'title'
);
$column
->title(
'Name'
);
$column
->editable(false);
$column
->format(
'#= <a href="www.google.hu">teszt</a>#'
);
$gantt
->addColumn(
$column
);