Answered: You can use standard HTML5 drag and drop API to implement this functionality. Please see the following example: https://code.daypilot.org/12371/javascript-scheduler-events-as-drag-and-drop-target
Answered: You probably mean the Gantt chart which displays the nodes expanded by default. You can override the default value using row.collapsed property of the data object: { id: 1 start: "2019-01-01T09:00:00...
Answered: There are two factors to take into account: 1. Frequency of change detection cycle calls Angular fires the change detection cycle for pretty much any action, including callback functions that are cal...
Answered: When you use the JavaScript declaration style you won't be able to access the component object as "this": onTimeRangeSelected: function(args) { // ... this.myFunction(); // won't work } It's necessar...
Answered: I realized now that in documentation even onEventMoving does not have those modifiers documented, but has them when i am debugging, hope that helps.
Answered: The Calendar and Month components now support options.width parameter that will let you override the dynamic width calculated from the current view. It's available since build 2019.1.3595 (see the sa...
Answered: The onDomAddEvent and onDomRemoveEvent event handlers are not yet supported in all components. In the DayPilotMonth component it's now available since 2019.1.3594 (use the latest sandbox version - ht...
in the default.aspx file i can see the the EventClickjavascript calls a javascript method in the event_handling.js file which should work , i wonder if the grid click has been disabled but i cant see...
Answered: Hi Wolfwgang, Sorry for the delay. This scenario is not supported at the moment. However, you can do it the other way around - instead of hiding parts of the event you can hide the non-business parts...
Answered: The print() method prints the exported image using the browser print() function. There is no way to control how the printed page will look like using the browser API. It can only be set by the user i...
Answered: You can use allowDefaultContextMenu property to enabled the default context menu: https://api.daypilot.org/daypilot-scheduler-allowdefaultcontextmenu/
Answered: You can make it read-only by disabling the drag and drop actions one by one: @Html.DayPilotMonth("dpm", new DayPilotMonthConfig { BackendUrl = Url.Content("~/Home/Backend"), EventMoveHandling = DayPi...
Answered: It looks like you might have overwritten the index.html file with one generated using the UI Builder (the generated index.html uses resources array with Resource 1 and Resource 2 defined). If you dow...
Answered: Unfortunately, this is not supported in the ASP.NET version. You can find a JavaScript version example here: https://javascript.daypilot.org/demo/scheduler/groupconcurrent.html
I'm trying to add a new calendar event from a UTC string coming from my server. How do I create an event from my UTC string? After I add the event it shows the event for 9:00pm when it should show 1:...
Answered: The cell duration adjustment is not supported in the open-source version at this moment: https://doc.daypilot.org/calendar/time-cell-duration/
I'm using daypilot on a ASP.NET Core but my model has a foreign key and I can't add a date for that reason, what can I do? or why I can't add a date, this is my code public class Reservacion { public...
Answered: The arrow element is marked with one of the following classes: .scheduler_default_link_arrow_left .scheduler_default_link_arrow_right .scheduler_default_link_arrow_down .scheduler_default_link_arrow_...
Answered: You'll need to switch to the Resources view and generate the column hierarchy manually. Please see more here: https://doc.daypilot.org/calendar/column-header-hierarchy/
Answered: The position of the next/previous buttons can't be changed. However, you can hide it using CSS and switch the dates manually using the select() method: https://api.daypilot.org/daypilot-navigator-sel...
Answered: You can show the week numbers in the first cell using onBeforeCellRender. Example for ISO week number (week starting on Monday): dp.onBeforeCellRender = function(args) { if (args.cell.start.getDayOfW...