Active Questions
I would also like to allow the users to edit the recurring events and subsequently the recurring rule using the inbuilt support AND the manual events ..
Answered: For events that you have expanded manually you need to store this information in custom fields (DataTagFields) so you can access them later. You will not be able to identify them using e.recurrent() ...
Planning to Purchase DayPilot Pro for ASP.NET MVC (OEM Start)
Answered: It looks like you might be referring to this question: http://forums.daypilot.org/Topic.aspx/3066/increase-cell-width-based-on-number-of-events I understand the requirement but I'm afraid there is no...
How do I get the in-built UI functionality for editing recurrence events restored after not using inbuilt functionality?
Answered: Dave, You need to store the rule definition with the master record even if you don't let DayPilot to expand it automatically. You will need it just for this case - to know how the rule was defined so...
Group Concurrent Events with Tree Resources
Answered: This bug is fixed now in the latest build (8.2.2082): http://javascript.daypilot.org/sandbox/ Thanks for reporting the problem!
the calendar has an issue in ie8 mode
Answered: This issue should be fixed now in the latest build (8.1.3504). You can download it in the sandbox: http://www.daypilot.org/sandbox/ Just note that DayPilot is not supported on IE8 and previous IE ver...
Multi-Line Events
Answered: By default, the Scheduler prevents the event text from wrapping. You can change it using eventTextWrappingEnabled property:
dp.eventTextWrappingEnabled = true;
You can also set custom event heigh...
DataRecurrenceField, single events in db and "The recurrence info id doesn't correspond to event id." error
Answered: > In point 6 what would be the result of leaving the DataRecurrenceField n place for the control? If you leave DataRecurrenceField property empty the control will not read the recurrence rule from th...
How to add a recurrence symbol for series of events whereby each event is a seperate event?
Answered: You can add the image using BeforeEventRender - just modify the html using e.Html to include an <img> element. http://doc.daypilot.org/calendar/event-customization/ Another option is to use event act...
Call Modal Box in AfterRenderJavascript
How to call modal box in AfterRenderJavascript and and how to pass event e in it?
Resources are not expandable in 8.1SP6 when resource.Expanded is set to false
Answered: I confirm the bug. It should be fixed now in the latest sandbox build (8.1.3503): http://www.daypilot.org/sandbox/Scheduler/ A SP with the fix will be released shortly. > On my initial post I had a c...
Recurrences - Is there a way to dynamically/programmatically set the repeat until value?
Answered: You can do it by calling Until() method on the RecurrenceRule instance. It can be either a new new instance:
RecurrenceRule r1 = RecurrenceRule.FromDateTime("1", start).Weekly().Until(DateTime.Toda...
Scheduler under Angular
Answered: This turned out to be a bug of the latest version - since the introduction of "events" attribute it fails to recognize "daypilot-events". It's now fixed in the latest sandbox build (8.2.2072): http:/...
InvalidCastException when command with selected events
Answered: Serialization of tags with null value has been fixed in 8.1.3484 so it shouldn't be a problem anymore: http://www.daypilot.org/daypilot-pro-for-asp-net-webforms-8-1-sp5/ Let me know if the issue pers...
OnEventResized
Answered: In ASP.NET WebForms, only one event handler is fired for every event. You can specify it using EventResizeHandling. It can be "JavaScript", "CallBack", "PostBack", "Notify", etc. onEventResized is on...
Call Javascript Functions from Code File other than Page Load function
Answered: Please see AfterRenderJavaScript event which is described here: http://doc.daypilot.org/scheduler/callback-update/ On the server side, pass a custom object to .Update() - it will be available in Afte...
Display Modal Box on Event Resize with Updated event details
Answered: If you want to open a modal dialog with event details after event resizing is complete, the best way is to open the modal dialog using AfterRenderJavaScript. This event is fired on the client side du...
angular ctrlAs
Answered: The latest sandbox version (8.2.2038) now fully supports controllerAs syntax:
<div ng-app="main" ng-controller="SchedulerCtrl as ctrl" >
<daypilot-scheduler
id="dp"
config=...
RecurrenceExpander.Expand method .. Is the table an absolute requirement?
Answered: Dave, for the full functionality the DataTable is required: it reads the recurrence fields automatically it parses the master events and exceptions it copies all the fields from the master to the occ...
Can I make Joint Events move together but not resize together?
Answered: Since build 2057 you can configure the behavior using the following properties:
dp.jointEventsResize = false;
dp.jointEventsMove = false;
You can test and download build 2057 in the sandbox: htt...