Questions Tagged how-to
Switching event calendar(javascript) from 'Resources' and 'Days'/'Week' not updating the headers
Answered: It's now fixed in the latest build (7.9.1428). Just note that .init() is called automatically from the jQuery plugin. The second call to .init() is ignored. This means the following part of code has ...
How to make data refresh when selecting different week on Navigator?
Answered: You need to reload the data source in Command event handler (where you change the dates according to the selected date received from the Navigator).
protected void DayPilotScheduler1_Command(object...
How to show the short date m/d in the week and month view
Answered: You can define the date format using TimeHeaders: http://doc.daypilot.org/scheduler/time-header-rows/ And you can also customize the time header HTML using BeforeTimeHeaderRender: http://doc.daypilot...
How to highlight entire selected month of Navigator
Answered: You can set the mode using SelectMode property: http://doc.daypilot.org/navigator/select-mode/
Text Margin for Time
Answered: This property (EventTextLeftIndent) is only used when CssOnly is set to false. The position of the time text is fixed and can't be changed. The solution would be to switch to CssOnly = true and add t...
Scheduler - Highlight Resource Start/End Dates
Answered: Can you please try to update to the latest DayPilot Pro version? In 7.9 SP5 and prior releases there was a bug that ignored custom cell properties in all but the first row. See also here - see "[Sche...
IE 8 + 11 Problem: No Events
Answered: It looks like the problem is the timeline. As far as I can see the time header doesn't include any cells. You can check whether this is a display-only issue by checking dps.itline array in the consol...
Different Colours for events in Scheduler
Answered: Something like this works in c#: protected override void OnBeforeEventRender(BeforeEventRenderArgs e) { if (Boolean.Parse(e.Tag["CheckedIn"])) e.BackgroundColor = "#9FF59F"; if (Boolean.Parse(e.Tag["...
Right clicking context menu on mobile devices
Answered: Please take a look at this tutorial, it shows how to configure the touch behavior (you need to set it on the Calendar control, not the menu control): http://code.daypilot.org/65794/html5-event-calend...
2013 Demo gets an error
Answered: It's fixed in the latest release (7.9 SP3): http://mvc.daypilot.org/daypilot-pro-for-asp-net-mvc-7-9-sp3/ The medium trust level setting is now removed from web.config: <trust level="Medium"/>
Current time in Scheduler
Answered: I solved this with Seperators (http://doc.daypilot.org/scheduler/separators/) dp.separators = [{color: "Green", width: 2, location: new DayPilot.Date()}]; dp.update(); setInterval(function () { dp.se...
Resource Header Click
Answered: After further tests, I found that there is no problem with the Resource Header Click if I use Google Chrome instead of IE8 as the browser. So, it seems that ResourceHeaderClick event is not supported...
How to change border end of each day?
Hi, We are using DayPilot in once of our Web applications. What we need is in the scheduler view change the right or left border of each cell at the end or start of the day. So that users can clearly...
Javascript Scheduler Rows Auto Height
Answered: Unfortunately, it's not possible to stretch the row height automatically because it's based on the event box height and the number of overlapping events. However, it's possible to use heightSpec = "M...
Display Hours as header or (Hours and Days)
Hi, I currently have a scheduler for a sight, but I'm having a hard time as to how can I show Time per day(24hours) as well as days in a week both in X axis. >daypilotplanner.aspx This is my current ...
How can i clear the content of daypilot scheduler version 7.9
Answered: This issue seems to be related to the timeline only. You can see this exception if the timeline is empty, i.e. when Days is set to 0 or if you hide all columns (http://doc.daypilot.org/scheduler/hidi...
Prevent moving between resources
Answered: You should set .moveVDisabled property of the event to true: http://doc.daypilot.org/scheduler/limit-event-moving/ You can do it directly in event data object or using onBeforeEventRender event handl...
How to see the whole Event text, for an event with a short duration
Answered: Are you using the Calendar or the Scheduler? There are several options: 1. Increase CellWidth (Scheduler)/CellHeight (Calendar). In the Scheduler, you can also increase EventHeight. 2. Add a Bubble t...
BusinessHours
Answered: The HeightSpec = BusinessHoursNoScroll is not available in the MVC Lite version at the moment. Most likely, it will be added in the next release.
scalehours in 30 minutes
Answered: In the Scheduler, you can use the following to get 30-minute time slots:
dp.scale = "CellDuration";
dp.cellDuration = 30;
See also: http://doc.daypilot.org/scheduler/scale/ http://doc.daypilot.o...
Ability to add images on the events
Answered: You can customize the event HTML using onBeforeEventRender event: Scheduler http://doc.daypilot.org/scheduler/event-customization/ Calendar http://doc.daypilot.org/calendar/event-customization/ Month...
When Adding Event, Resource Is Null
Answered: I assume you create the columns manually in view #1 (ViewType="Resources"). You probably specify the resource for each of these columns. That's why it's available in TimeRangeSelected. In view #2 the...
Keep scroll bars always visible
Answered: The solution would be to let the scheduler fill the window/viewport so you can always reach the horizontal scrollbar at the bottom (without using the browser vertical scrollbar). Use heightSpec="Pare...
How to delete Resource from scheduler
I have tried to delete a resource by having a menu item on Resource menu and using callback to update the database and rebinding the data. I am also using update() method inside SchedulerBeforeResRen...
On event resize
Answered: There are two ways to do it: 1. Store the old event start and end in the args object in onEventResize (which is fired before the default action). The same object will be passed to onEventResized. The...
current version of jQuery
Answered: Yes, there should be no problem with any recent version of jQuery.
External Drag for scheduler with calendar
I want to perform an external drag from a gridview to a Scheduler with a linked navigator to select date. If we select different date from the calendar, e.StartDate and e.EndDate will still be Today ...
Can't create event using javascript
I have tried to create event using javascript. I have created like this : @Html.DayPilotMenu("menu", new DayPilotMenuConfig { CssClassPrefix = "menu_default", Items = new DayPilot.Web.Mvc.MenuItemCol...
How to export daypilot calender in excel ?
after R&D on export supports for daypilot i came to know there is only support for PDF and image. I wanted to confirm is there possibility to export to excel & if possible then how ?
Event Calendar only shows current day
Hi, I cant seem to get the Event Calendar to show more than the current day. My Controller looks like this currently: public ActionResult BackEnd() { return new Dpc().CallBack(this); } } public class...