Product Bundles
DevCraft
All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:
Web
Mobile
Document Management
Desktop
Reporting
Testing & Mocking
CMS
UI/UX Tools
Debugging
Free Tools
Support and Learning
Productivity and Design Tools
Hi,
Is it possible to show title in the summary tasks?
Thanks
function
pageLoad() {
$ = $telerik.$;
var
gantt = $find(
"RadGantt1"
);
gantt._widget.bind(
"dataBound"
,
() {
colorTasks();
});
}
colorTasks() {
tasks = gantt.get_allTasks();
for
(
i = 0; i < tasks.length; i++) {
task = tasks[i];
if
(task.get_summary()) {
taskElement = $(gantt.get_element()).find(
".rgtTimelineContent .rgtTask[data-uid='"
+ task._uid +
"']"
taskElement.find(
".rgtComplete"
).text(task.get_title());