Hoping someone out there can help answer if and how our request is possible. We are using the DP Pro Scheduler to show a multitude of events at the hourly level. Some events are only an hour, some ar...
Answered: You can change this the scheduler "BeforeEventRender" event Here I advise you to create your own layout, using labels, divs, ... this can be done using the "e.tag" values you get from your event. Onc...
Answered: If you digg you shall find. Apparently you define what "tags" should be looked for in the row object. To define the tags i wrote this in the init-method: setDataTagFields("mytag1, mytag2"); Then: Row...
Answered: I suggest you check the dates in the "BeforeCellRender" event f your scheduler. Here you have all the data of the field, which you can use to cross reference with your own holidays list. If you deter...
Hi, On IE9, the following code will fail: if ($m.Columns == null || $m.Columns.length == 0) { c.colSpan = $0P; $R.style.width = $1l + "px"; } else { ... Because if $0P == 0, then an execption is rais...
Hi, It's any way to determine the with of then calendar's columns in ressource view. WidthInPrct property of column object become obsolet. I would like to have 3 columns per day with 1 smaller (20%),...
I have a context menu item that calls the following jscript function to remove an event function removeEvent(tgt) { //$.ajaxSetup({ cache: false }); // must turn caching off to ensure json method is ...
Hi everybody, I would like to know if there's a quick workaround to fix a bug (at least I suppose that is a bug) in cells render. I'm using the Calendar component, and I'm trying to inject some html ...
Hi, Like the new feature in the scheduler, it is possible to replicate it to the Month object? What I want is to set custom backgroundcolor while using the CssOnly = true. Is this possible? Thanks in...
By default (I guess) the scheduler is displaying the date in the header only at the center. So If I scroll too far over left or right the date is not displayed. Is there a way to make the date displa...
Hi, I am using a purchased version of daypilot. Currently for schedule I am using my own written ASP.NET code but now I want to use the scheduler. My requirement is to create a schedule against a per...
Answered: Thomas, you can use the following code: // bubble = DayPilot.Bubble object // dps = use ClientObjectName value (DayPilot.Scheduler object) // resource = resource id function showResourceBubble(bubble...
Answered: Since 7.1 SP4 it's possible to create an instance of this class by calling: EventInfo.Create(id) for regular events EventInto.CreateRecurring(masterId, start) for recurring events This will create an...
Answered: This is not hard at all. Here is a code snippet which I use for my offices which turn different events into different colors (based on the first two letters). Event: "FG - Out of Office" protected vo...
I am using daypilot month in order to set events. On a daily basis we have two events that need to be side by side (i.e. two events which are half as long as normal events side-by-side as opposed to ...
Hi, I downloaded the Trial solution and noticed that when running the TimeHeaders form the events are shown on the wrong days when it is run locally (the form hosted by DayPilot is fine). For example...
DayPilot 7.1.2730 I have a page which displays a scheduler or month control within a jQuery UI tab page. I am using script to ensure that the tab control fills the available space, and I want the con...
Hi All Is anyone processing the questions posted on the forums? I posted a question on 26/11 but have had no response, looks like same situation for other unanswered questions. I'm evaluating the pro...
Hello, I have seen two questions regarding this on the forum and the feature was supposed to be build in in 2011. Any news on that? How can I prevent my event from overlapping during TimeRangeSelecti...
Hello, We are planning a new project for a company that still uses Internet Explorer 6 as main browser :( We tested you control and fits our requirements but we have a problem with daypilot 7 and new...
Answered: Hi Dan, I think I found a possible reason why the calendar was so slow to load. I had a OnBeforeEventRender method to apply a color code each event, and that is why the rendering time was so long. No...
Answered: The class is added to the element if CssOnly="False" is set on the DayPilot:DayPilotCalendar but not of CssOnly="True" I've figured this workaround: modify the InnerHtml to add a marker div then add ...
From the code below is t possible to identify why the row lines do not match when the scheduler is rendered. The size of the event row is not matching the size of the row header. Also, the scheduler ...