Active Questions
How to disable daypilot scheduler?
Answered: Yes. There are two options: 1. You can turn off individual actions using the *Handling properties. Example:
dp.eventClickHandling = "Disabled";
dp.eventMoveHandling = "Disabled";
2. You can also...
Load Resources and Events On Vertical Scroll
Answered: At this moment, the Scheduler doesn't support loading additional resources during scrolling. All resources need to be loaded in advance using .resources array. However: 1. The row headers are rendere...
How do I use a date time after TimeRangeSelectedJavaScript?
Answered: The start of the selection is available in "start" variable in TimeRangeSelectedJavaScript. It is a DayPilot.Date object.
TimeRangeSelectedJavaScript = "document.location='Bokabord2?startingtime=' ...
Export/Print Function for GANTT
Answered: It's in the plan and it will be available one of the future releases.
Edit rows from mobile devices
Hi, I'm trying the scheduler demo version and I've implemented the rows editing. On desktop browser everything works well and when I click on rows header I can edit it. But, if i'm using a mobile dev...
Send Email Reminders
Answered: You need to load the events from the database and expand them using RecurrenceExpander class. You can do this outside of a page and outside of the ASP.NET context - e.g. in a standalone application r...
how to remove the new event if inline event edit text is blank
Answered: In the latest build (8.1.1914), the onEventEdit/onEventEdited events are now also fired when the editing was canceled using <esc> or when the text is unchanged. The canceled editing is indicated usin...
Loading Completed Event?
Answered: There is a built-in element ("loading label") that will be displayed if a callback takes more than about 100ms. You can set the label HTML using LoadingLabelText property. It is displayed in the uppe...
How to remove DEMO MARK ?
Answered: When you purchase DayPilot Pro for ASP.NET WebForm you receive a download link to a full version of the package. You need to use DayPilot.dll that was included in the full package download. Sometimes...
How do you know when a single occurrence has been 'rescheduled'?
We are using the RecurrenceExpander to go through events to show whether openings on our calendar are 'booked' or not. Using the RecurrenceExpander seems to work well EXCEPT when one of the recurring...
Calendar stuck on Loading
when i open the calendar on my laptop (chrome) everything is OK. but when users try to open the pag on their android phone, events do not load and loading label is shown. I connected my laptop to the...
headers are shifted
Hi. I'm new to using Calendar (lite) and when I run the web app in the IE 11 - headers with the dates are shifted vs the data. It shows data for the next date and headers and columns are not aligned ...
Change cell border color in scheduler?
Answered: The direct style properties are ignored in the CssOnly mode (the CssOnly mode is forced since 8.0 release): http://api.daypilot.org/daypilot-scheduler-cssonly/ You can control the cell border using C...
onBeforeCellRender for a ressource on a day
Answered: Let's say you have a list of days to be highlighted:
var days = ["2016-01-01", "2016-05-01"];
You can use the following code to highlight these days in the Scheduler:
dp.onBeforeCellRender = fu...
how-to-read-anr-write-tags (Continued)...
Answered: Thanks for pointing this out. The ASP.NET version stores the tags in a slightly different way. Using e.tag("name") is the universal way to read the tag values. The JavaScript version requires the eve...
Where is the new event details stored?
Answered: In the ASP.NET version the events are loaded from the DataSource property when you call DataBind(). If you set StoreEventsInViewState to true they will be stored temporarily in the ViewState but it i...
Rows Filtration in Scheduler
Answered: It's quite possible that the version you are using doesn't support row filtering. As you can see in the documentation (https://doc.daypilot.org/scheduler/row-filtering/) the row filtering is supporte...
Resource start time format in scheduler
Answered: When you specify the data source for the Gantt columns it will take the source data and display them using the default format. In case of DateTime fields, it is DateTime.ToString() method. This metho...
Update event details in database using Ajax
Answered: I assume you don't want to use any of the built-in mechanisms (PostBack, CallBack, Notify). You can make your own AJAX call (e.g. using jQuery) from EventResizeJavaScript handler. Note that the JS co...
Please would you provide some examples of supported scenarios?
Answered: Dave, Generally, what you find in the documentation and the tutorials (http://code.daypilot.org/) are supported scenarios. We are discussing mainly the recurrence - and here the supported scenario is...