All Questions
Testing and message for attempt to create new event before current time and date
Answered: It depends on how you are creating a new event. If it's directly on TimeRangeSelected it could look like this:
TimeRangeSelectedHandling="JavaScript"
TimeRangeSelectedJavaScript="check(start, end,...
Set title of cell
Answered: You might want to take a look at BeforeEventRender event instead. cell = background time cell (all cells have fixed size is determined by CellDuration) event = event box displayed on top of the backg...
Change Day and Date Column Header Font
How can I change the font for the column headers (day and date). I have added the attrribute - CssClassPrefix="scheduler_" and I have added the following styles to the css. .scheduler_timeheadergroup...
'DayPilot' is undefined
Hello, i have a problem with demo version i created a aspx page with calendar elements, and i created the same datatable on the example, but internet explorer look the error 'DayPilot' is undefined.....
How to change button label on the confirm popup.
Answered: The confirm() dialog is provided by the browser and it's not possible to change the buttons.
How to show slots that have EndTime >= 00:00
Answered: I'm not able to reproduce the problem. If I create a new event (from 22:00 to 00:00 the next day) it displays fine: http://www.daypilot.org/demo/Calendar/ Are you sure that you are loading the data f...
How to stop flickering of DayPilotCalendar in updatePanel
Answered: If you place the Calendar inside an UpdatePanel it gets redrawn completely during update. Different browsers may be able to handle it differently (IE is not very good at smooth redrawing). The page l...
how to change the value of the multipal DayPilotCalendar based on the click of DayPilotNavigator
Answered: Please see here: http://kb.daypilot.org/61736/how-to-bind-navigator-to-multiple-controls/
how to change the colour of e.DurationBarColor
Answered: You need to add this: DataTagFields="color" and handle BeforeEventRender event:
protected void DayPilotCalendar1_BeforeEventRender(object sender, BeforeEventRenderEventArgs e)
{
e...
Daypilot Lite Scheduler : Problem when deleting events.
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
Menu - Javascript commandCallBack is executed after page.loadcomplete and causes page to stop rendering
Answered: Ah I've solved it - sorry, my mistake. I wasn't thinking about the difference between callback and postback - replacing eventMenuClickCallBack with eventMenuClickPostBack makes it work.
DayPilot Lite Events
Answered: Yes, this namespace is only available in the Pro version. It contains delegates and EventArgs for the Pro events. In the Lite edition, only two events are available: EventClick and FreeTimeClick (cor...
Support for Exchange/Outlook and LDAP Connectors
Answered: There is no example available yet but it should be no big problem to show Exchange data using DayPilot. DayPilot accepts almost any kind of data. Just pass a simple List of custom objects to DataSour...
event resize javascript scheduler
Answered: Please see the following documentation pages: http://www.daypilot.org/calendar-event-resizing.html http://www.daypilot.org/calendar-event-moving.html Look for JavaScript Handling section. In short, y...
DayPilot Scheduler Focus On a Date
Answered: You can use the following method:
DayPilotScheduler1.SetScrollX(new DateTime(2011, 7, 15));
Change mouse icon to hand on mouse over of monthview
Answered: At this moment it's hardcoded. You would need to change it in the source code.
DaypilotNavigator JS-select incorrect behaviour
Hello. When use dpn.select(dt) with dt not in visible range navigator should always switch to month which contains selected date. Now the logic is sometimes incorrect, especially when you try to impl...
Setting DataTextField to an object's property which is string array
Answered: You will probably have to change the structure of your data source. DayPilot converts the value of the specified field to string using Convert.ToString() call. The other option is to change it in the...
DayPilot Calendar for MVC
Answered: The latest sandbox build now contains a demo page that shows a hierarchy of resources: http://mvc.daypilot.org/sandbox/Calendar/DaysResources The sources is a modified Calendar/Index example. 1. The ...
Width and BeforeEventRender probelms after upgrade
Answered: Issues #1 and #2 could indicate that you have downloaded the Lite edition instead of the Pro edition. The Lite edition doesn't support scrollbars and BeforeEventRender event. The latest Pro edition u...
Scheduler show bubble on event click
Answered: The EventClickHandling="Bubble" option was not supported. It's now enabled in build 6.5.2300. You can also add EventHoverHandling="Disabled" to turn off hover bubble action. See also: http://www.dayp...
How to get the previous and next linkbuttons
Answered: There are no built-in buttons at this moment, but it's easy to add them. See an example from Scheduler/Default.aspx:
<a href="javascript:dps1.commandCallBack('previous');">◄</a>
<a href="ja...
Problem with weekly recurrence
Answered: This is by design. The first event is always defined by its start and end. The subsequent occurrences are following the recurrence rule. This is how it works internally. However, you should be able t...
limitations of Trial Version
Answered: It displays a "DEMO" label in the upper-left corner. The functionality is not limited.
Level in header
Answered: Hi Eneko The second level that you say, is for the alldaysevent property, if you put this to "false" it's disappears Regards
New HeightSpec value
Answered: In the 6.5 release (http://www.daypilot.org/daypilot-pro-6-5.html), it will be possible to specify the displayed hours range independently of the business hours and HeightSpec using DayBeginsHour and...
Loading label for Daypilot month
Answered: I've added it to the wishlist. It might appear in the 6.5 release: http://www.daypilot.org/daypilot-pro-6-5.html