This is a migrated thread and some comments may be shown as answers.

Turn off percent complete

4 Answers 276 Views
Gantt
This is a migrated thread and some comments may be shown as answers.
BRAD
Top achievements
Rank 1
BRAD asked on 02 Oct 2014, 09:24 PM
In my gantt grid (I'm using the MVC version with IGanttTask and IGanttDependency implementations) i don't use the percent complete option at all, so i would like to be able to turn off that functionality in the grid itself that allows you to drag the carat back and forth.  is there a way to hide that carat?  

4 Answers, 1 is accepted

Sort by
0
Bozhidar
Telerik team
answered on 03 Oct 2014, 06:30 AM
Hi,

You can easily hide the carat with the following CSS:
.k-task-draghandle {
    display: none !important;
}


Regards,
Bozhidar
Telerik
 
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
 
0
BRAD
Top achievements
Rank 1
answered on 03 Oct 2014, 04:55 PM
thanks!  that worked.  do you have more CSS to hide the black dots that appear to the left and right of the time line when you hover over it too?
0
Accepted
Bozhidar
Telerik team
answered on 06 Oct 2014, 06:35 AM
Hello,

To hide the dots as well, you just have to add the k-task-dot class to the previous selector, like so:
.k-task-draghandle,
.k-task-dot {
    display: none !important;
}


Regards,
Bozhidar
Telerik
 
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
 
0
rajeshraju
Top achievements
Rank 1
answered on 09 Jun 2016, 11:44 AM
how do I remove percentage complete label without removing drag and drop handle
Tags
Gantt
Asked by
BRAD
Top achievements
Rank 1
Answers by
Bozhidar
Telerik team
BRAD
Top achievements
Rank 1
rajeshraju
Top achievements
Rank 1
Share this question
or