My tasks are going to be all day tasks only. The All Day row has several tasks in it but they are bunched up. I need to remove the time rows in the Day view.
I've tried this as a databound event:
This gets rid of the time rows but the all day row is still the same height. Another problem with this is that it removes the time rows for all views: Month, Week, Day, etc... I only want them removed for Day.
How can I get this to work?
I've tried this as a databound event:
function
scheduler_dataBound(e) {
var
scheduler =
this
;
var
ele = scheduler.wrapper.find(
".k-scheduler-layout>tbody>tr:nth-child(2)"
);
ele.remove();
if
(!isResizedManually) {
isResizedManually =
true
;
scheduler.view().refreshLayout();
$(window).trigger(
"resize"
);
}
else
{
isResizedManually =
false
;
}
}
This gets rid of the time rows but the all day row is still the same height. Another problem with this is that it removes the time rows for all views: Month, Week, Day, etc... I only want them removed for Day.
How can I get this to work?