Answered: 1. If you want to use this event handler to customize the Navigator cells you need to add the method to the code behind: protected void DayPilotNavigator1_OnBeforeCellRender(object sender, BeforeCell...
i use moment js to arrange time my calendar config: $scope.calendarConfig = { startDate: moment().utcOffset(11).format('YYYY-MM-DD') } in my database there is different field for time and date so i u...
Answered: On the client side, you should be able to change the font color using args.fontColor: dp.onBeforeEventRender = function(args) { args.fontColor = "red"; }; See also: https://api.daypilot.org/daypilot-...
Answered: The JavaScript files in in the ASP.NET WebForms are not licensed for standalone usage - they can only be used within the DLL as embedded resources. If you prefer using the JavaScript version you can ...
Answered: The onBeforeCellRender applies the properties (business/non-business) to grid cells. The business status can be set for each cell separately and it's possible that cells in the same column will not h...
Answered: Since build 2535 you can call dp.rows.filter("filter"); before .init() to apply the filter. You can get the latest build in the sandbox: http://javascript.daypilot.org/sandbox/ Let me know if it does...
Answered: You can ask your question here in the forum: https://forums.daypilot.org/question/new Or you can contact support directly: support@daypilot.org.
IOS works fine however taping on an existing event in the Daypilot Month view using an android devices is also causing the onTimeRangeSelected to be fired shortly afterwards.
Setting the box.html is not displayed. See following in documentation box.html (if not specified, complete percentage is used for tasks, empty string for groups and milestone) Setting box.htmlLeft ha...
Answered: You can modify the cells on the fly using the cells API, e.g. dp.rows.find("A").cells.all().html("A"); You can also add/remove CSS classes using .addClass() and removeClass(). See also: https://api.d...
Answered: It's a propery of the Task class. You can set the value like this: Tasks = new TaskCollection(); Task task = new Task("Task 1", "1", DateTime.Today, DateTime.Today.AddDays(5)); task.Complete = 50; //...
Answered: It looks like you are using the Lite (open-source) version that doesn't support these features. See also the "Availability" table at the bottom of the documentation pages: https://doc.daypilot.org/sc...
Answered: > Is there a javascript function (or postback event) that I can use for this feature? EventMoving event ( https://doc.daypilot.org/scheduler/event-moving-customization/ ) is a good way to implement i...
Answered: The latest build (8.3.3548) introduces BusinessWeekends property which you can use to set the behavior (the default value is false): <DayPilot:DayPilotScheduler ... BusinessWeekends="true" /> You can...
Answered: By default, events are not stored anywhere so you need to reload them (use DataSource and DataBind just like in Page_Load): Public Sub dpCalendar_EventResize(sender As Object, e As DayPilot.Web.Ui.Ev...
Answered: Oh, found another answer that seems to have answered this. The first parameter needs to be null, not that last parameter as indicated in the above link. onmousedown='return DayPilotCalendar.dragStart...
Answered: This is how it works at the moment: If the modal displays a URL (and not custom HTML) it creates an iframe object and uses it to display the target page. Creating the iframe is expensive so it keeps ...
Answered: At this moment the SelectMode has to be changed on the client side: nav.selectMode = "month"; nav.update(); Another option is to place the DayPilotNavigator control inside an UpdatePanel.
Answered: The Scheduler supports client-side overlap detection ( https://doc.daypilot.org/scheduler/event-overlapping/ ). This helps with real-time UI feedback but it's also necessary to implement server-side ...
How do I disable TimeRangeSelection for a particular date (Ex sunday) Can i select particular time slots rather than all time slots? Is there any way I can call the daypiloyt modal window from a MVC ...