Thank you for the update to the Month Headers in Scheduler, this is something that I was hoping for for a long time. Unfortunately, our official browser at work is Internet Explorer, and the floating...
Hello, When I'm trying to create a new event using daypilot-modal-2.1. After I close modal dialog I use dp.clearSelection(); Then I switching to another view of Calendar and events won't load because...
Answered: You can disable horizontal drag and drop event moving using BeforeEventRender event handler: http://doc.daypilot.org/scheduler/limit-event-moving/
Answered: You can change the duration bar color using BeforeEventRender: http://doc.daypilot.org/calendar/event-customization/ This event is called for every event. If you request a calendar refresh after savi...
I am using the scheduler and need to use javascript for the ResourceHeaderClickHandling. I'm managing the click event, but I'd like to change the row that was clicked to a different color so the user...
Answered: You can modify e.IsBusiness status for individual cells using BeforeCellRender event handler. See also: http://doc.daypilot.org/scheduler/cell-customization/
Answered: The first thing to try is to disable the Row Header Width Auto-Fit feature: http://doc.daypilot.org/scheduler/row-header-width-auto-fit/ More resource header optimizations are scheduled for the next ...
I downloaded DayPilot lite 2.0 and I am trying to integrate it our Visual Studio ASP.net 2.0 with c# project and SQL Server database to verify before we migate to Visual Studio 2012 in about 5 months...
Answered: You probably mean the "Column Header Hierarchy" feature: http://doc.daypilot.org/calendar/column-header-hierarchy/ This feature is not planned for the Lite version. I recommend purchasing the Pro ver...
Answered: In the latest demo (7.7.5664) it seems to work fine and there hasn't been any problem with the bubble recently. http://mvc.daypilot.org/demo/Scheduler/ Anyway, it's important that the bubble declarat...
Hi When the calander is in week mode range select in RTL mode on mobile browser (firefox) is working like mirror, for example when you select a range from first column in the left, the control shows ...
Answered: AutoRefresh is now supported in the JavaScript version (build 7.7.813). See the sandbox: http://javascript.daypilot.org/sandbox/ If enabled during initialization (autoRefreshEnabled = true), it will ...
Answered: You should call .update() after changing startDate or days. This is an example from the the navigator integration demo: http://javascript.daypilot.org/demo/scheduler/navigator.html See onTimeRangeSel...
Answered: DayPilot uses event.returnValue to prevent the default action conditionaly - only if event.preventDefault() method is not available. Most likely, this warning is not generated by DayPilot. Either way...
Answered: You should set the .moveEnabled property on the DayPilot.Event.data object, not on DayPilot.Event directly: var e = new DayPilot.Event({ start: "2014-03-25T00:00:00"), end: "2014-03-25T12:00:00", id:...
Answered: You can specify the menu items in the code behind using DayPilotMenu.MenuItems property: protected void Page_Load(object sender, EventArgs e) { DayPilotMenu1.MenuItems.Clear(); // <DayPilot:MenuItem ...
Hi, Do you have any spring application like this AJAX Event Calendar for Java and jQuery (Open-Source). I try to run AJAX Event Calendar for Java and jQuery (Open-Source) i can able to create event b...
Hi.. Is it possible to show Context Menu on the right click for multiple selection in DayPilotMonth? I have set for DayPilotCalendar, it works.. but not for DayPilotMonth.. Here the properties that I...
Basically i used they following code to get the string in the cell field EventInfo ei = DayPilotCalendar1.SelectedEvents[0]; string evnt = ei.Text; But i would like to get the DatasourceID of the fie...
Answered: Drag and drop event moving (and EventMove handler and related properties) are only available in the Pro edition. See also here: http://doc.daypilot.org/calendar/event-moving/
hi! i have an event with "moveHDisabled". When i drag this event i can drag this event to the left cell. hope you know what i mean ;) can send you a screenshot...
Answered: If you modify the event in .events.list and call update() it should be updated properly (as all events will be redrawn as part of the update). See also: http://api.daypilot.org/daypilot-scheduler-upd...
Answered: e.Data holds custom data sent from the client side when invoking the EventMove event manually using .eventMoveCallBack(). See also: http://api.daypilot.org/daypilot-scheduler-eventmovecallback/ If yo...
Answered: You can use CellSelectColor property to specify custom cell selection color. This is one of the few elements that can't be styled using the CSS theme. It will be added to the themes soon.
Answered: For true WYSIWYG export including CSS you need to use a browser. Take a look at PhantomJS: http://phantomjs.org/ It works very well but it's a standalone process (no native .NET support).
Answered: 1. If you want to use <asp:Calendar> control you will need to place both controls inside an UpdatePanel. In the Calendar.SelectionChanged event handler, call: DayPilotCalendar1.StartDate = Calendar1....
Answered: You can insert custom HTML into the event cell so it will add a scrollbar (see overflow: auto). You can also increase the cell height using CellHeight property. See also: http://doc.daypilot.org/cale...