javascript - How to hide times header of a timelineMonth view on Kendo UI Scheduler widget? -
i'm trying hide times header kendo ui scheduler widget until now, didn't achieved results need in choosen type of view. don't need times because events day events. therefore, there way of not showing times such 12:00 am, 13:00 am, etc...
i followed documentation , if put in script, scheduler doesn't show anymore. here're scripts:
databinding: function(e) { var view = this.view(); view.times.hide(); view.timesheader.hide(); },
and/or
databound: function(e) { var tables = $(".k-scheduler-times .k-scheduler-table"); //required: remove last table in databound when grouped tables = tables.last(); var rows = tables.find("tr"); rows.each(function() { $(this).children("th:last").hide(); }); },
then, other alternative, added line of script views section:
minortickcount: 0
all rows 12:00 disappeared however, made schedule complete obsolete because erased cells of events showed.
anyone ever encountered such issue overcome?
you try css:
.k-scheduler-timelineweekview > tbody > tr:nth-child(1) .k-scheduler-table tr:nth-child(2) { display: none; }
Comments
Post a Comment