Active Questions
rows.filter() while onEventMoving()
Answered: Unfortunately it's not possible to use the filter in onEventMoving because the filter() method causes a refresh of the Scheduler (and it disrupts the current drag and drop operation). Also calling an...
Disable context menu item & Dynamic context menu
Answered: #1 Since build 1591 you can use "disabled" attribute of a menu item. Please see the updated jsfiddle: http://jsfiddle.net/jLLck2sz/2/ #2 There is no context menu for grid cells, only for time range s...
Divide on minutes i attached the screen short.
Answered: You can customize the hour header using TimeHeaderCellDuration property: http://doc.daypilot.org/calendar/time-header-cell-duration/
How to allow overlapping only for some events
I have a set of tasks some of them are deleted but will remain displayed on the scheduler so I want to allow overlapping only for them which mean I can add a task overlapped with a deleted one
Left click Bug
Hi to all, I just encountred a strange bug while playing with my scheduler ; I accidently cleft clicked on an empty cell of the scheduler and all the events were gone ! Why and how to fix it
Scheduler: edit row width
Answered: No, the grid of the "days". The Feature of the row-header-width is perfect. I can Change it with the mousecursor. Exactly the same Feature for the calendar-days would be cool!
Collapse feature and dynamic loading
Hi, I'm using the collapse feature for resources and dynamic loading for events, but when I collapse resources events does not load until I user the sroll how to fix this ?
Calendar OnEventSelected() event doesn't change the back color of event
Hello, I'm working on the daypilot event calendar javascript pro - v1531. I have 2 events in my calendar. The first event had some back ground color and the second event had default color. When i sel...
Allow/Deny Drag and Drop per Event Deosn't work in version: 7.9.3373.0
Answered: 1. This issue is related to the default MoveBy value. For MoveBy="Full" (which is now the default value) disabling event moving in BeforeEventRender has no effect. This issue is fixed in the latest s...
How to fast up the event tool tip when it is placed over a event.
When placing the mouse pointer over a event in monthly calendar view, it takes 3-5 seconds to load the tool tip. How fast up can be done. Event Bubble is used to display the tool tip, like to speed u...
How to change the TimeRangeSelectingStartEnd date to french language
How to change the TimeRangeSelectingStartEnd date to french language
Show colored dwith the event name
Hi all, I want to show a colored div with the name of each event, any idea how to do ?
CommandCallBack on Mac/iPad
Answered: Adding the following config part under <system.web> element will solve the problem. <browserCaps> <filter> <case match="AppleWebKit/600"> EcmaScriptVersion=1.5 supportsCallback=true </case> </filter>...
Drag and Drop Indicators with Informations about a Resource
Answered: The latest build (8.0.1571) now stores the row information in a DayPilot.Row object accessible as args.row: http://javascript.daypilot.org/sandbox/ In previous releases you can get the row object usi...
Change row height
Answered: You can set the height of all events in a row using BeforeResHeaderRender event handler/e.EventHeight property. If there are no events in that row this will make the height of that row equal to the e...
Event Background color
Answered: The code for setting custom event background color should look like this:
protected void DayPilotCalendar1_BeforeEventRender(object sender, BeforeEventRenderEventArgs e)
{
e.BackgroundColor...
How to align the event name (text) to center in monthly view calender
Answered: You can create a new theme in the theme designer and use Events / Text alignment: center http://themes.daypilot.org/month/create Example: http://themes.daypilot.org/month/theme/szipwb
Event bubble missing - Event Calendar javascript
Answered: There are three problems with the fiddle: 1. You need to add bubble property to the config:
bubble: new DayPilot.Bubble(),
2. Don't call .init() if you are using the jQuery plugin. The .init() m...
Two vertical scroll bars when heightSpec:"Fixed
Answered: It should be fixed now in the latest sandbox build. The fiddle works now. Thanks for reporting the issue.