Questions Tagged
Scheduler -> Dynamic Cell Width with a minimum
Answered: There was a bug in the latest release that prevented CellWidthMin from working. It should be fixed now in the latest sandbox build (8.1.3509): http://www.daypilot.org/sandbox/
problem with date and time
hello,How can I separate date and time in two different text fields. Currently I am getting date and time in separate text field and it is inserting into database but events are not moving and not di...
External Drag and Drop in Monthly Calendar
Answered: Yes, but there is no set target date at the moment.
RecurrenceRule: Does it store the start and end dates of the event?
Answered: No, it doesn't. The start date can be used when creating a new RecurrenceRule instance to read certain values for the rule - e.g. day of week in case of weekly recurrence, day of month in case of mon...
Should it be just a matter of replacing the DayPilot.dll to upgrade from the Lite version?
Answered: No additional changes should be required. You can give it a try by replacing the Lite version DayPilot.dll with the trial version from http://www.daypilot.org/try/
external drag and drop
Answered: The following tutorial shows how to use external drag and drop in a real-world scenario: http://code.daypilot.org/51743/courtroom-schedule-tutorial-asp-net-c-vb-net In most cases you will already hav...
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 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...
RecurrenceExpander.Expand Issue
Answered: The current implementation doesn't support creating an exception for the first occurrence (the one stored in the master record). If you create an exception with the start date that corresponds to the...
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=' ...
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...
execute a javascript function after commandCallBack success
Answered: I recommend relying on the Navigator to request the events using the standard mechanism: 1. Let the "Next" button change the navigator only:
<a href="#" id="next">Next</a>
<script>
$("#next")...
dynamically load resources and events on vertical scroll
Answered: Please see my comments here: http://forums.daypilot.org/Topic.aspx/3125/load-resources-and-events-on-vertical-scroll
Export/Print Function for GANTT
Answered: It's in the plan and it will be available one of the future releases.
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 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...
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...
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 ...
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...
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...
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...
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...
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...
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...
Planning to Purchase DayPilot Pro for ASP.NET MVC (OEM Start)
Answered: It looks like you might be referring to this question: http://forums.daypilot.org/Topic.aspx/3066/increase-cell-width-based-on-number-of-events I understand the requirement but I'm afraid there is no...
the calendar has an issue in ie8 mode
Answered: This issue should be fixed now in the latest build (8.1.3504). You can download it in the sandbox: http://www.daypilot.org/sandbox/ Just note that DayPilot is not supported on IE8 and previous IE ver...
How do I get the in-built UI functionality for editing recurrence events restored after not using inbuilt functionality?
Answered: Dave, You need to store the rule definition with the master record even if you don't let DayPilot to expand it automatically. You will need it just for this case - to know how the rule was defined so...
Group Concurrent Events with Tree Resources
Answered: This bug is fixed now in the latest build (8.2.2082): http://javascript.daypilot.org/sandbox/ Thanks for reporting the problem!