Answered: You can try 1. to remove [assembly: AllowPartiallyTrustedCallers] from DayPilot/Source/Properties/Assembly.cs (and recompile DayPilot) or 2. to add [assembly: AllowPartiallyTrustedCallers] to your dl...
Answered: I've posted a short tutorial that demonstrates how to modify the CSS theme for the timetable tutorial : http://code.daypilot.org/39902/asp-net-timetable-with-custom-css-theme Instead of the _matrix c...
Answered: It is minimized using ESC (ECMA Script Cruncher). You can find the instructions here: http://www.daypilot.org/how-to-compile-daypilot-pro-source.html The ESC download page is no longer available but ...
Answered: What you describe is basically the default "Resources" mode: http://doc.daypilot.org/scheduler/resources/ You need separate database tables for "Tasks" and "Actions". Task = has a name, displayed in ...
Answered: It depends on what you actually want to do (and it looks like #1 is what you are looking for): 1. If you only want to call a client-side method, use EventClickHandling="JavaScript" and specify your j...
Answered: This has to be done on several levels: 1. You can use the authentication system you already have in place to identify the current user. 2. Let's simplify the authorization rules (ACL) to general "rol...
Maybe there are more than one problem but i'm stuck at pretty much the first row. I am trying to allow my users to make the scheduler/calendar "fullscreen" by snapping it out of the main window into ...
hi Dan, besides selecting multiple events, would be also cool if the user is able to move or drag n drop multiple events in scheduler e.g. by pressing ctrl key? And all of event or callback argument ...
Answered: You can use 'moveDisabled' property: var e = new DayPilot.Event({ start:new DayPilot.Date(), end:(new DayPilot.Date()).addHours(5), id: DayPilot.guid(), text: "New Event", resource:'E', moveDisabled:...
Answered: The problem #1 can be solved by generating the rows manually (it's really simple) as demonstrated in the Gantt tutorial at http://code.daypilot.org/68118/gantt-chart-tutorial-asp-net-sql-server-c-vb-...
Hi All, I have created a user control for Daypilotcalendar, now in .aspx page i have added single DayPilotnavigator. Now from database i read multiple users and create calendar from user control in s...
Answered: You probably mean the ToolTip (based on HTML title attribute). You can disable it using ShowToolTip property: http://doc.daypilot.org/month/event-bubble/
Answered: The Scheduler doesn't contain any element that can get focus. You can detect the Delete key for the whole page using the following code: <script type="text/javascript"> $(document).keyup(function (e)...
How do you implement 'all-day' events in the month view. If the client wants to show the event start time it is still showing for events that have a start and end time of 00:00:00. What is the correc...
Answered: This is the English version as translated by Google: "Is it possible to change the day view calendar will be scheduled so that, for hours and across the rooms?" This translation is not perfect so thi...
Answered: This issue should be fixed by upgrading DayPilot.dll to the latest version. The updated Timetable Tutorial code now includes DayPilot version 7.6 that fixes the problem: http://code.daypilot.org/6510...