How to control the appointment width, save some room for add another appointment?
on which control? could you do that by over-riding some of the CSS elements?
on Webdayview, I try to overriding some of css, but which css should I overrid, igdv_Appointment, igdv_ActivityEdge?
try this
https://ko.infragistics.com/help/aspnet/web-webdayview
found under online documentation / Using Web Schedule... / Visual Aspects
simlar pages exist for each control
I've figured out it as follow,
$(document).ready(function() {
setTimeout("SetAptWidth()", 500);
}
function SetAptWidth() { $('.igdv_Appointment').each(function() { $(this).width($(this).width() - 5); }); }
Why does not this product supply this function for user, and support very badly?
thanks you for help, I saw this document before, now how to make some room on right section for doubleclick for another appointment.
.igdv_Appointment { margin: 0px 1px 0px 1px; cursor: hand; padding-right: 40px!important; }
but it doesn't work at all.