Questions Tagged
How-To: Alter Working Hours (Scheduler)
Answered: Yes, you can do it using businessBeginsHour and businessEndsHour properties. See also: https://doc.daypilot.org/scheduler/business-hours/
Search for value
Answered: There is an API to find events using the event id:
var id = "123";
var e = dp.events.find(id);
Then you will be able to focus it using scrolling methods:
dp.scrollTo(e.start());
dp.scrollToRe...
Event Tooltip does not display using Lite version 5.0.308
Browser is Firefox and IE Documentation says it is supposed to work using the Lite version. Is there another property that needs to be set?
daypilot calendar day is not matching date
Answered: Hi Haider, Can you please give it a try with the latest DayPilot Pro version (8.2 SP1)? http://www.daypilot.org/try/
Export functions don't work with images as resources
Hi, im using the MVC Scheduler with resources as images in the first column. If i try to export any view from the scheduler, the images are not showed in the JPEG, PNG or somethings else. (see upload...
Angular 2 Troubleshooting
Answered: Ok well my fault so here was the issue: I add that line I mentioned to the angular-cli.json Which is what I have done for every other 3rd party control in this project. I took that line out to stay i...
Event overlap true. Set maximum events per day
Hi! I would like to have multiple events in one day. I set eventoverlap to true. (hotel reservation system) But I would like to set limit per day. Is there anything like this? I think, I saw it somew...
Push updated data to other connected clients
Answered: In ASP.NET MVC, the best way is to use SignalR to notify the client about the changes. You could possibly also send the actual changes using SignalR but it seems to be easier to just send a "refresh ...
After import csv, cant see events in calendar
Hi I am using hotel reservation system. After importing values into table reservations -> LOAD DATA LOCAL INFILE 'test.csv' INTO TABLE temp CHARACTER SET utf16le FIELDS TERMINATED BY ';\0' LINES TERM...
Kanban: onBeforeCellRender in AngularJS
Answered: This happens because event handlers specified using on-* attributes automatically wrap the code in an $appy() block - to make the behavior consistent with the standard AngularJS behavior. This isn't ...
Kanban: Active Column in AngularJS
Answered: There was a bug - the Kanban control made some direct changes to the column.areas array during an update which triggered another update... It should be fixed now in the latest sandbox build (8.2.2375...
A custom modal popup form closes periodically - how can this be overcome with other DayPilot controls?
Answered: Dave, It looks like the LinkButton might reload the page. Adding the OnClientClick event handler doesn't prevent the default action (PostBack). Can you try adding "return false;" to the event handler...
DayPilotScheduler- Same Event Heights?
Answered: You can control the event overlap using EventStackingLineHeight property: https://doc.daypilot.org/scheduler/event-stacking-line-height/ You can use a value from 0 to 100 (percent). 100 is the defaul...
Unable to hide non business hours
Answered: In the Calendar control this functionality is not controlled by "showNonBusiness" but using heightSpec property. In fact, there are two options: 1. Use heightSpec: "BusinessHoursNoScroll" https://doc...
Month name
Answered: In the ASP.NET version, it uses the current locale to format the dates. In the demo, the locale is set to "en-us" in web.config:
<configuration>
<appSettings/>
<system.web>
<compilation ...
Daypilot Modal window issue
Hello there I am using Daypilot Modal extender to show the popup screen when I click an event. I use bootstrap validation to validate my controls in my pop up window, so when I click submit button I ...
show days/month on top when scrolling down
Answered: Yes, this is possible - see the HeightSpec options (especially HeightSpec = "Fixed", "Parent100Pct" and "Max" values): https://doc.daypilot.org/scheduler/height/
TimeRangeSelectedHandling = TimeRangeSelectedHandlingType.CallBack Issue
Answered: The CallBack is an internal mechanism that only allows communication with the server-side DayPilot backend. It exchanges messages in JSON format - in other words, you can't use it to open a modal dia...
Navigator selection days
Answered: It's in the wishlist but there is no specific time plan. There is an option to sponsor this feature if you'd like to set a fixed implementation date - please contact sales@daypilot.org if you'd like ...
Load resource data via ajax doesn't expand child nodes
Answered: You can expand the children by adding expanded: true property to the parent node:
[{"id":11,"name":"Dublin - EIRE","children":[]},{"id":24,"name":"My Venue","children":[]},{"id":25,"name":"Graham's...
Day border
Answered: One of the options is to add custom separators at the specified times (day starts): https://doc.daypilot.org/scheduler/separators/
Daypilot scheduler/Calender occupancy report
Answered: You can display the occupancy percentage in a special column of the row header: https://doc.daypilot.org/scheduler/row-header-columns/ This way you would be able to display occuppancy per room. You c...
Set a width of Specific Column and its data
Answered: Actually, I figured it out with using RowHeaderWidthAutoFit = "false" on ASP.NET and then scheduluer.HeaderColumns.Add(new RowHeaderColumn("NEW COLUMN", 200)) <= size of the column to be 200px
whom to contact if i want to buy this
Answered: Please contact sales@daypilot.org for sales-related questions, thanks.
demo
Answered: The easiest way to try it out is to download the project and run it on a local webserver with PHP enabled (e.g. Linux with Apache and PHP). Just copy the project to the web root. If you use MySQL you...
Select multi resources?!?
Answered: In the Lite edition, the Scheduler control is not available. In the Pro edition, you need to load the event as multiple records if you want to display it in multiple rows (one per row).
How to make events removable?
Answered: In the Lite (open-source) edition the built-in delete icon is not supported. In the Pro edition you can enable it using eventDeleteHandling property:
dp.eventDeleteHandling = "Update";
See also: ...
HTML5 Doctor Appointment Scheduling (JavaScript/PHP/MySQL)"
Answered: If you are asking about how to install the project locally to try it out please see this answer: http://forums.daypilot.org/Topic.aspx/3413/demo If you are asking about licensing - you'll need a DayP...
Navigator for DayPilot Calendar with ViewType='Resources'
Answered: If you click a date in the Navigator and you have linked it to the main Calendar using BoundDayPilot property it will fire OnCommand event:
@Html.DayPilotNavigator("dpn", new DayPilotNavigatorConfi...