Answered: Don't you have the zoom set to something else than 100%? If that wasn't the problem, could you please send me the output HTML of that page to support@daypilot.org? http://kb.daypilot.org/55640/saving...
Answered: Apologies, after hours of working on it looks like I should have been blind not to see the bloody bug in my code. Anyway ignore this topic. Lord Arokh
Answered: If the scheduler works the same as the Month control, n the relevant Before_Render event, check Control.IsExport before writing your HTML (you can export with plain text instead)
I am using the scheduler in day view. I would like to have the times ofevents stack from the earliest available time. Example if the day starts at 7:00 am then the first filled event should be 7:00 a...
Answered: You can use BeforeTimeHeaderRender event handler to change properties of the time header cells. Example: protected void DayPilotScheduler1_BeforeTimeHeaderRender(object sender, DayPilot.Web.Ui.Events...
Answered: Hi Darko, Please see the following checklist: kb.daypilot.org/28947/how-to-improve-speed-of-the-scheduler-when-showing-many-even/ The most important step would be to upgrade to 6.2 SP3 . It doesn't s...
Answered: This can be done, but: 1. You need to separate the actual events from resource links in you database. Each event could be possibly linked to several resources so you need one more table for the link....
Answered: Yes, it's possible. Here you can see something similar but showing one week per column. You can switch to one day per column by modifying CellDuration property to 1440 (one day has 1440 minutes). htt...
Answered: Two new properties were added (build 6.7.1847) to DayPilot Scheduler : CrosshairOpacity (default value 20) CrosshairColor (default value "gray") You can use them to adjust the appearance of the cross...
Answered: The Scheduler in the Lite version has two relevant properties: BusinessBeginsHour BusinessEndsHour They will allow you to define the business hour start and end but the actual effect is a different b...
Answered: Hi Rob, Sorry for the delay. Monday was hardcoded as the first day of week (having effect on the header group) in DayPilot Scheduler . I've just added WeekStarts property that works the same way as i...
Answered: Sorry for the delay... You can customize the headers using BeforeTimeHeaderRender event. The first row (group header) can be detected using e.IsColGroup property and the content can be set using e.In...
Answered: CallBack can be used primarily for changes of the DayPilot control itself. Changes to other parts of the page have to be done manually using AfterRenderJavaScript. It would be possible to send the da...
Answered: In the Scheduler control, it's possible to hide weekends using ShowNonBusiness="false": http://www.daypilot.org/scheduler-hiding-non-business-hours.html In the Month control, it's possible to use Sho...
I am receiving the following error when attemping to run a page with the Scheduler control on it: String was not recognized as a valid DateTime. I have the DataSourceID set to an ObjectDataSource whi...