Answered: You can access the DayPilot.Navigator object using $scope.navigator (because id="navigator"). The config only holds the configuration data (it has no methods). Try this instead: // show $scope.naviga...
Hi, I've noticed that if I fill the Scheduler with resources to make it displays the vertical scrollbar and then scroll with the mouse wheel, the viewport move backward of one day per scroll. The sch...
Answered: This was a bug which is now fixed (since build 2100): http://javascript.daypilot.org/daypilot-pro-for-javascript-8-2-sp4/ Let me know if the issue persists.
Say I have 5 tasks, and each task is linked to the one before it, if i move the first task is it possible to have all the other tasks move the same number of days? so say task one is from 01/01/2016 ...
i don't want events to be created before the present time using modal. so i want to hide the modal before current time. can u please help me in hiding the modal??
Hi I want to pass the data from partial view to controller My Partial view Code @Html.Label("Area" , new { @class = "control-label" }) @Html.TextBoxFor(model => model.Area, new { @class = "form-contr...
if you have multiple events on the same day (for the same resource) some of them are not displayed after you export the Scheduler. this does not always happen. it depends from the StartTime and EndTi...
Answered: Yes, this is possible using the Calendar control: http://doc.daypilot.org/calendar/resources-view/ However, the vertical time axis in the Calendar is limited to 24 hours.
Answered: 1. If you are asking about the number of days visible in the Scheduler - this sample configuration displays 365 days but you can configure it using Days property. 2. If you are asking about the licen...
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/
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...
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...
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/
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...
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...
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 disp...
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...
Answered: The start of the selection is available in "start" variable in TimeRangeSelectedJavaScript. It is a DayPilot.Date object. TimeRangeSelectedJavaScript = "document.location='Bokabord2?startingtime=' + ...
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...
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").click(f...
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...
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...