Answered: I found what was causing this. The page had a Telerik control which was somehow causing this to happen. Removing all Telerik controls resolved the issue.
Answered: U meant Daypilot Month Right? If so, In properties, Change EventFontSize:200(For Example). Then Do one more thing EventStackingMode :cell. It should be multiline.(In Expected Format.)
I am trying to find out if the recurrence field of a record is RecurrenceException.EncodeExceptionDeleted using SQL query. I look at the website but there is no mention of how to decode the string of...
Answered: You can override .loadingStart and loadingStop on the client side but this is not public API. You can also modify the loading div content using LoadingLabelText property (it accepts HTML as well).
Answered: It's fixed now in build 7.1.2728: http://www.daypilot.org/sandbox/ See also: http://www.daypilot.org/daypilot-pro-for-asp-net-webforms-7-2.html The main algorithm requires a sorted list which was not...
Hi, I'm trying to block events clientside (doubleclick, to add an event) During the dps_BeforeCellRender, I place the cells to isBusiness (+ change CSS) Then i catch the event using the javascript fu...
Hi all, When i try to read some recurrence exception event from database, i have this error: System.FormatException: La chaîne n'a pas été reconnue en tant que DateTime valide. à System.DateTimeParse...
Answered: The ConflictDetector API has been extended to handle recurring events in 7.1 release. http://www.daypilot.org/daypilot-pro-for-asp-net-webforms-7-1.html It's not used in the tutorial yet (the tutoria...
We are currently pulling time records, validating those records. Then we call the "Backend" method in the Calendar controller in order to generate the daily calendars. I would like to by pass the Cal...
Answered: "I cannot see the database structure." http://www.daypilot.org/scheduler-tutorial.html The link above gives the DB structure as a script, which works fine in SQL Server. You'd then use the ADO.Net ob...
Answered: The event handler is invoked correctly but this call will not do anything, Response.Write() is not allowed there. You can check it by modifying the event: e.InnerHTML = "test"; e.BackgroundColor = "r...
Answered: You can extract the original start date from the recurrence string using RecurrenceRule.DecodeStart(): DateTime originalStart = RecurrenceRule.DecodeStart(recurrenceString); There are also other help...
Hi, I am using DayPilot version 6.4.2265.1 and I am coming up with event font size issue while setting it from code-behind. But when I set it from designer (.aspx) EventFontSize="14pt" it works. I wa...
Answered: If you insert the <input> element manually you won't be able to get its value easily on the server side - it won't be mapped automatically to a server-side control because it doesn't exist. You shoul...
Answered: Andrew, Could you please try build 2718 from the sandbox? http://www.daypilot.org/sandbox/ This issue should be fixed there. Please let me know if the problem persists.
Answered: It looks like there is a bug in the EventResize event handler. If you modify it like this it will work fine: protected void DayPilotScheduler1_EventResize(object sender, DayPilot.Web.Ui.Events.EventR...
Answered: Please see section #3 of the tutorial (3. MVC 3 Controller). There are two Actions that need to be created: Index (opens the view) Backend (backend for internal ajax callbacks) If you open the action...