Questions Tagged feature
Booking for multiple tables
Answered: This scenario is not covered by the tutorial. However, you can select multiple time ranges at once using "time range multi-selecting" feature: http://doc.daypilot.org/scheduler/time-range-multi-selec...
Multiple resources timerangeselect
Answered: Yes, it's possible but you need to select the resources one by one (holding Ctrl): http://javascript.daypilot.org/demo/scheduler/multirange.html
Delete event in lite version
Answered: The Lite version doesn't implement the integrated "delete" icon. The best way to handle it would probably be including a special "Delete" button in the "Edit" modal dialog (just like Google Calendar ...
Daypilot Scheduler - Export to PDF
Answered: If you want to add custom header and footer to each PDF page simply use the code from "Add Title to PDF" section:
// create a graphics object for PDF page modification
XGraphics gfx = XGraphics.Fr...
External Drag and Drop in Monthly Calendar
Answered: Yes, but there is no set target date at the moment.
Ability to add/remove/update rows without updating entire control
Answered: You can find and modify the cells using cells.find(), cells.findXy() and cells.findByPixels() methods: http://api.daypilot.org/daypilot-scheduler-cells-find/ http://api.daypilot.org/daypilot-schedule...
Image/PDF Export for ASP.NET MVC
Answered: The next MVC version (8.2) will include client-side PNG export support. You can create the PDF on the client side using jsPDF (http://mrrio.github.io/jsPDF/). It will let you insert the exported PNG ...
api version
Answered: The ASP.NET WebForms version uses API v1 and it can't be changed. The selected api affects how the client-side events are processed. For api=1 only one event is fired for every action, depending on t...
Expected End Date
Answered: You can set custom CSS for an event using onBeforeEventRender. See also: http://doc.daypilot.org/scheduler/event-customization/ CSS
<style>
.expected .scheduler_default_event_inner {
...
Navigator highlights previous month while toggling between week and month view
Answered: You can change the navigator selection using .select() method:
var nav = new DayPilot.Navigator("nav");
// ...
nav.select(new DayPilot.Date()); // selects today
Headers with different height
Hello, Is it possible to configure a different height for each header? For example I have 3 headers, Month, Day and Hours, and I want to have Month 40px height and Day, Hours height with a height of ...
Export functionality PDF/PNG format
Hi, I am currently evaluating your product DayPilot-Pro for using it in our online application. But one of the most important requirement is to be able to export the calendar in PDF/PNG (for printing...
My DayPilotCalendar don't fire the OnTimeRangeSelected Event on PostBack
Answered: It's now fixed in version 5.0 SP1 (build 303): http://www.daypilot.org/download/
Multi Resizing
Hi. We are currently evaluating Daypilot Scheduler. Very satisfied with the multiselect and multimove features. But we are missing the option to select multiple events and then resize all selected si...
Fix the upper Resource? (2nd try)
Answered: Unfortunately there is no quick solution other than using two Schedulers. However, this is just a workaround and may not work in all cases.
<div id="dp1"></div>
<div id="dp2"></div>
<script>
...
Drag and Drop Indicators with Informations about a Resource
Answered: The latest build (8.0.1571) now stores the row information in a DayPilot.Row object accessible as args.row: http://javascript.daypilot.org/sandbox/ In previous releases you can get the row object usi...
Custom data in afterRender method on initial load is always null
I see that the Scheduler returns custom data in the Update(data) function on the initial page load, but it doesn't seem that the Calendar works the same. I can return data on an update, but not on an...
Scheduler: edit row width
Answered: No, the grid of the "days". The Feature of the row-header-width is perfect. I can Change it with the mousecursor. Exactly the same Feature for the calendar-days would be cool!
Feature Request:How to reorder/resize the resource columns- Event calender - Daypilot pro javascript
Couple of weeks back, i have raised a question regarding resize/reorder of resource columns and 'Dan Letecky' requested for the sponsoring the feature. http://forums.daypilot.org/Topic.aspx/2580/how-...
HTML Application
Hello, Is there a way to embed DayPilot Scheduler in an HTML Application (.hta file) ? I've tried this little code but no way: alertbox #1 and #2 never fired, and nothing shown (path to library is ok...
Row Filtering: problem with child-resources
Answered: This is now fixed in build 8.0.1518. The child nodes that match the filter will be visible including their parents. http://javascript.daypilot.org/sandbox/scheduler/rowfiltering.html
Resources with no ability to book Events on
I have many Resources in Groups. The "Parent"-Resources shouldnt be able to book events on. And the backcolor of this rows may dark (or something like that). And if the user drags over thuch a row th...
Is there a way to show other data than the actual date in the header?
I'm thinking about using this for a room booking scheduler, but rather than showing multiple days horizontally, I would like to only show a single specific day with all the available rooms and the se...
Month, StartDate, and Angular
It doesn't appear that setting $scope.config.startDate in the controller does not automatically refresh the calendar like it does with scheduler. How do I dynamically reset the start date from a cont...
Multiple timezone view of Scheduler
Answered: Provided that all dates are GMT you can add a secondary time header that will display another time zone. Just override onBeforeTimeHeaderRender and update the HTML as needed. The limitation is that t...
Scheduler: optical subdivision
HEy Dan! My scheduler got about 50 REsources. Some of them are grouped by something. So there are f.a. 5 resources i want to edge. But not only the names of the res., also the whole row. It would be ...
Allow "Selectable" as a field on Cells in BeforeCellRender
Hi Dan, Please reference this old question: https://forums.daypilot.org/Topic.aspx/661/prevent_time_range_selections You had suggested an elegant potential solution, of having each Cell having a prop...
Event Resize: Stepless ?
Answered: You can turn of the "snap to grid" behavior using .snapToGrid property. See also: http://doc.daypilot.org/scheduler/snap-to-grid/
Week Days
Answered: This is possible, but you need to Pro version (http://www.daypilot.org/buy.html). If you switch to the "timesheet" view using ViewType="Days" it will display 24 hours of day on the X axis and days on...