Active Questions
Different calledar for users
Answered: You can access the Controller using "Controller" property from within the Dpc class. Given that the user id is available as User.Identity.Name you can use something like this to filter the events:
...
I've managed to open a modal form from code-behind, I now need to close it.. Please advise on how....
Answered: See also the explanation here: http://forums.daypilot.org/Topic.aspx/3328/which-java-script-files-and-functions-are-absolutely-essent 1. The source page using UpdatePanel should be no problem (you op...
Which java script files and functions are absolutely essential to close a modal form?
Answered: With the default settings, the modal dialog uses an iframe to display the content. That means the content is working with a different window context. In order to open the modal dialog, you need to in...
onBeforeCellRender set cell properties
Hi all, I'm using the Daypilot Calendar in ored to manage a SPA appointmens. On the columns I have the treatment rooms and on the rows the timeframe. I'm wondering if it's possible to add a cell prop...
Error when adding allday event in angular
Answered: This issue should be fixed now in the latest sandbox build (5836): http://mvc.daypilot.org/sandbox/ Let me know if there is any problem.
Is it possible to display a Daypilot modal dialog form from the code behind of a web form?
Answered: The only way to open the modal dialog from the server side is to run the required js code using RegisterStartupScript() method. This technique is used by the Util.Modal class that comes with the moda...
Scheduler showing grid some area grade out
Hi, Not sure it's as design, few times i see combination of Gray and white area in scheduler table. Could you please let me know what causing the issue. Please find attached screenshot. Thanks
Different Height for specific Events?
Answered: Yes, you can specify custom height using .height property: https://api.daypilot.org/daypilot-event-data/ It will overrride the global height set using .eventHeight property. You can also specify cust...
DayPilot Inline Event Editing
Answered: The texbox dimensions are set according to the original event already. However, there is a certain minimum width/height enforced by the browser so you may see a bigger textbox for some small events. ...
Ressource Tree Collapse JavaScript
Answered: Since build 2259, you can use DayPilot.Row.collapse() and DayPilot.Row.expand(): https://api.daypilot.org/daypilot-row-collapse/ https://api.daypilot.org/daypilot-row-expand/ In previous builds, you ...
Programmatically disable/enable the controls on the recurrenteventedit.aspx page? Is it possible? if so, how..
Hi Dan and Team, I would like to programmatically change those controls on the RecurrentEventEdit.aspx page.. So they can be edited, disabled, enabled, etc... Is this possible and if so, please advis...
Scheduler not updating correctly the time when event moved
Hello guys, I was playing around with the scheduler and realized that if I use the scheduler to show only the hour, timeHeaders: [ { groupBy: "Month", format: "MMMM yyyy"}, { groupBy: "Day" }, { grou...
CSS hourcellborder gone?
Answered: You can apply custom CSS class to cells that close an hour.
protected void DayPilotCalendar1_BeforeCellRender(object sender, BeforeCellRenderEventArgs e)
{
if (e.End.Minute == 0) {
e.CssCl...
Scheduler - Row Header always keep Floating
I have set rowHeaderColumns (three columns with Name & width) & resources properties. The rowHeaderWidth is set to 200 & rowHeaderScrolling is set to true. The row headers & resources are appearing q...
Procedure for integrate daypliot js with jspm
Hi, I'm using version 8.2 for understanding scheduler hour view. Currently we are java script package modules(jspm) for loading front end modules. In the documentation i don't see any information rel...
onEventClicked don't work when switching page
Hi, when i switch page, the onEventClicked don't work. I have to reload the page to make it work again. Is it a bug ? There is my code : $scope.schedulerConfig = { scale: "Day", days: 365, startDate:...
How to change transition in daypilot scheduler
Answered: You can scroll to the specified date using .scrollTo() method: https://api.daypilot.org/daypilot-scheduler-scrollto/ Demo: http://javascript.daypilot.org/demo/scheduler/scrolling.html Let me know if ...
Scheduler Event Resizing, notifying user of the overlap and then undoing the resize?
Answered: In the ASP.NET version you can do it like this: 1. Set EventResizeHandling to "CallBack". 2. In the OnEventResize handler, perform your checks. If there is an overlap, use UpdateType.None and notify ...
How to export excel with table
Answered: You are exporting the data in CSV (https://en.wikipedia.org/wiki/Comma-separated_values) format which doesn't support any formatting. Basically, there are two options: 1. You'll need to use a third-p...
Change start time and end time of a day in DayPilot.Scheduler
Answered: You can customize the start and end hour by generating a custom timeline: https://doc.daypilot.org/scheduler/timeline/