This is how my control looks <DayPilot:DayPilotScheduler ID="DayPilotScheduler1" runat="server" Enabled="false" HeaderFontSize="6pt" HeaderHeight="30" DataStartField="start" DataEndField="end" DataTe...
Answered: If the problem is that you are not able to show the full text in the event box you have two options: 1. Make the events bigger by increasing CellWidth value: http://doc.daypilot.org/scheduler/cell-wi...
Answered: DayPilot works with exact time points: The day begins at 00:00 and ends at 24:00 (i.e. 00:00 the following day). If you want to display the end date the way you describe you need to subtract one day ...
Hi! When i click on a event which is "clickDisabled = true;", daypilot handle it like it is "dragged". The Event is "marked" and the mousecurser moved to the "cross". In that case you cant move the e...
HEy Dan! My scheduler got about 50 REsources. Some of them are grouped by something. So there are f.a. 5 resources i want to edge. But not only the names of the res., also the whole row. It would be ...
Just yesterday, I'm using DayPilot MVC 7.75664.0 and client script version 800. Today, I delete the old script and reference newest version 7.8.5684.1 and add client script version 921, but when I ru...
Answered: It looks like you might be using the Lite (open-source) version of DayPilot ( http://www.daypilot.org/daypilot-lite/ ) with a sample code created for DayPilot Pro. DayPilot Lite for ASP.NET WebForms ...
Answered: Eunice, Inline editing of all-day events is now available in the latest sandbox build (7.8.3154): http://www.daypilot.org/sandbox/ It will be available in the next official release. In addition to th...
Answered: Please upgrade to the latest version (2.1): http://code.daypilot.org/81367/daypilot-modal It uses a different mechanism of passing the result back to the client and it is compatibly with Google Chrom...
Answered: I'm not sure if that's what you are looking for but you can set the number of days visible using .Days property: this.DayPilotScheduler1.Days = 365;
Answered: The dates are interpreted as exact time points, i.e. when the start date is set to 01.01.2014 it means 2014-01-01T00:00:00, the end date 03.01.2014 means 2014-01-03T00:00:00. The difference between t...
Answered: Do you see the error on this page? http://www.daypilot.org/demo/Calendar/ In IE11 it seems to work fine. What's the IE version you are using?
Answered: It looks like the only way is to clear the style for _todaybox in the CSS (to hide the default today indicator) and add a custom class using BeforeCellRender for today. protected void DayPilotNavigat...
Answered: The new theme elements that were introduced in 7.8 are defined like this (in the built-in theme, i.e. "scheduler_default"). You can copy these styles to your theme. The other themes in the package an...
Answered: Jeff, There was a problem with passing the updated DayBeginsHour/DayEndsHour to the client side during CallBacks. It's fixed now in build 7.8.3155. See the sandbox: http://www.daypilot.org/sandbox/
Client asked for a report that showed the dayCalendar (week) with events but no Navigator or Tabs (for Day/Week/Month). I created a view with the dayCalendar, but it would only show the current day r...
When I added a webService to the project that implemented a connection to a ReportViewer, a build returned the error that it could no longer find the reference DayPilot Pro. For anyone who encounters...
Hi Dan, Please reference this old question: https://forums.daypilot.org/Topic.aspx/661/prevent_time_range_selections You had suggested an elegant potential solution, of having each Cell having a prop...
Answered: Solving record locking is far from simple in web applications. See the following SO question for a brief outline of the problem: http://stackoverflow.com/questions/3358957/blocking-a-record-from-edit...
I was just wondering if it was possible that when you was on the Day Pilot Month pro for a user to select multiple days on the month view and then to right click on the selected days and click 'Book ...
I have been trying to figure out how to can specify days and set there background colour. I have been trying different things like: (Just to set Sunday as a different colour, this didn't set the back...
Answered: Make the following changes to get it to work: timeRangeSelectedHandling set to Disable change onTimeRangeSelected to onTimeRangeDoubleClick this will disable the drag select and only keep let you ins...
Answered: 1. Server side: You can count the number of items in your DataSource. It should match the number of visible events provided that you limit the SELECT properly (using StartDate and EndDate). Note that...
Answered: It was definitely something with my style sheet. I will try to apply my styles one by one and see if I can get it to look the same without breaking the expand/collapse. Thank you for your help.
Answered: Please take a look at this: http://stackoverflow.com/questions/2638265/how-to-create-a-custom-button-in-a-detailsview-in-asp-net Another option is to avoid the DetailsView and create the form manuall...