Questions Tagged
Timeheader doesn't scroll vertically
Hi Daypilot, I'm using very old version of DayPilot having version "1418". Now I have a problem with Daypilot Calendar. In my Calendar, I have around 30 days, when I scroll to see another dates, the ...
Wrap text in DayPilot Weekly Scheduler
Answered: The text wrapping is disabled by default - you can enable it using this property: https://api.daypilot.org/daypilot-scheduler-eventtextwrappingenabled/
regarding SAAS license
Answered: When you need to deploy multiple instances (e.g. for scalability reasons) you'll need to upgrade to a multi-server license (i.e. SaaS Team or SaaS Office).
Disabled cells for DayPilot.Calendar
Answered: Yes, it's in the plan - it will be introduced in one of the coming releases.
timeline assign date
Answered: Hi Otto, You can create DayPilot.Date object from an ISO string using a constructor:
var date = new DayPilot.Date("2019-05-04T12:00:00"); // "2019-05-04 12:00:00" works as well
See also: https:/...
Edit resource name with JavaScript
Hello. I‘ve seen, that it is possible to change the name of a resource/row inline. Is it also possible to do this outside of Daypilot with an external formular? Since now I didn’t found a way to do t...
Daypilot Javascript
Answered: After the 60 days has been completed, you either need to pay or the trail would end and you won't be able to use it further.
login to scheduler
Hello, is there a sample how to handle user login/logout for the scheduler users. Thank you in advance Otto
HTML5 Hotel Room Booking (JavaScript/PHP) bubble
Answered: The bubble text/HTML needs to be specified using "bubbleHtml" property of the event data object: https://doc.daypilot.org/scheduler/event-bubble/ If the "bubbleHtml" property is not part of the serve...
Show resource unavailability based on time-range not on cells
Answered: It's possible to implement custom rules using onEventMoving, onEventResizing and onTimeRangeSelecting events: https://api.daypilot.org/daypilot-scheduler-oneventmoving/ https://api.daypilot.org/daypi...
Request your support on day pilot challenges in implementation.
Answered: > 1) Horizontal line only visible in the scheduler control You can customize the CSS theme generated using the theme designer (https://themes.daypilot.org) and clear the style for the vertical line e...
How to visible false Day pilotgrid line asp.net
Answered: The grid lines are specified using the CSS theme, using "*_matrix_horizontal_line" and "*_matrix_vertical_line" CSS classes. Please see also: https://doc.daypilot.org/scheduler/css-classes/
BeforeCellRenderer fired only on Startup
I am using the BeforeCellRenderer event to modify certain cell's background color via DayPilot.Web.Ui.Events.BeforeCellRenderEventArgs which works as expected. the problem as soon as an event updates...
Edit Event does not fire in Chrome unless DevTools is started
Answered: Fortunately, I found a workaround by using these JS events: dpc.onEventMove = function (e, newStart, newEnd) { eventChange(e, newStart, newEnd); }; dpc.onEventResize = function (e, newStart, newEnd) ...
Event for resource column click?
Answered: Just found out about: https://doc.daypilot.org/scheduler/active-areas/
DayPilot Gantt - Export Client-Side
Answered: Hi Andrea, Gantt client-side export is in the works - it will be available in the near future.
How use Daypilot on Laravel
I have project for work orders on laravel I like to use scheduler of daypilot. But lmodal.showUrl and loadResources() did not work. How I can use. Please let me know samples.
BubbleText
The bubble text is slower to display upon hover when I there are more resources. This happens in Chrome.
Display Totals On Rows and Columns
Answered: Hi Aliaa, Sorry for the delay. There are actually two event handlers that let you customize the row headers: 1. The onBeforeResHeaderRender is a legacy event which is only fired when the rows are loa...
database
Answered: In PHP, you can modify the backend scripts (backend_events.php, backend_create.php) to work with your database. The DB connection properties can be found in _db.php. The MVC version defines the data ...
Increase the height of the DayPilot Calendar control to fit its parent dynamically
Answered: Please see the following tutorial for a working example (Scheduler with heightSpec set to "Parent100Pct"): https://code.daypilot.org/75104/angular-scheduler-full-screen-layout
Slow in rendering cells
Answered: The Scheduler is optimized and it only renders the cells for the current viewport. However, this configuration extends the viewport to the whole grid and it displays all 100*15*24 = 60,000 cells at o...
Right-click range select, on button release
Answered: This issue should be fixed now in the latest sandbox build (2018.4.3470): https://javascript.daypilot.org/sandbox/
Event rendering on copy
Answered: Most likely, the problem is that the new event has the same ID as the original one. After recent changes, the Scheduler requires each event to have a unique ID. This applies since the various event i...
Extra Fields Add
Answered: The modal dialog can show any HTML page using showUrl() method. You can create a standard page with the required fields and display it using showUrl(). You can pass the form data back to the calendar...
How to switch between the Day,Week and Month view in Angular4
Answered: Please see the following sample project that shows how to implement a calendar with day/week/month views: https://code.daypilot.org/30451/angular-calendar-day-week-month-views
limited timeframe
Answered: already found the solution need to change $morning_shift_starts = 9; $morning_shift_ends = 13; $afternoon_shift_starts = 14; $afternoon_shift_ends = 18; in the backend_create.php thankyou anyway
Scheduler with Sortable Columns for Javascript
Answered: There is a tutorial in the works that will show how to sort rows using the column headers in the JavaScript version. It will be published at https://code.daypilot.org - you can subscribe to email not...
Exception User-Unhandled
Answered: Yes, thank you so much. I've checked in WireShark the IP address my app was trying to connect with. Then I set that address (with another port) as a proxy and suddenly it started to work. Thank you!