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
0
Hi,
You can easily hide the carat with the following CSS:
Regards,
Bozhidar
Telerik
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
Hello,
To hide the dots as well, you just have to add the k-task-dot class to the previous selector, like so:
Regards,
Bozhidar
Telerik
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