Questions Tagged
daypilot.sqlite file
Answered: You can use one of the SQLite manager applications, e.g. http://sqlitestudio.pl/
Gantt control, moving tasks
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 ...
Can i disable modal before the current time
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??
How to pass date from partial view to controller in MVC4?
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...
attributes like name and project codes
Hello, is there a mechanism to capture other attritbutes from user, Errors in does not work with the version on your site in VS 2015 .NET 4.6 thanks
DayPilotScheduler Cannot Export Multiple events on the same day for the same recource
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...
Switching X and Y axis
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.
how many days are used this template code?
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...
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...