Questions Tagged how-to
How do you control the top border of event, remove it, use a different color, etc.
Answered: protected void Scheduler_BeforeEventRender(object sender, BeforeEventRenderEventArgs e) { if (condition) { e.DurationBarColor = "green"; } if (else) { e.DurationBarColor = "red"; }
Assigning data to child resource
Using the Scheduler and cannot figure out how to assign an event directly to a child in a resource. Example: Parent (type of marketing) = Email Marketing Children (list of vendors) = Constant Contact...
How can I add white space to a cell below other events to allow a user to create new events? DP pro Version: 1514
Answered: The rowMarginBottom property of the config object adds N pixels below the last event in a cell.
How can I get the original resource on the onEventMoved callback?
I have a job on the scheduler and multiple people may be assigned to the same job, I want to be able to find the original resource the job was assigned to when it is moved so I can replace the old re...
Disable menu item for some events
Hi , Any way to disable (or make invisible) a certain menu item (not the whole menu) for some events ?
Cell height stacked overlapping events plus one
How can I set the cell height to be the size of the stacked overlapping events plus one
How to customize color code for events in Scheduler
Hi Team, Currently we are evaluating DayPilot Scheduler for one of our projects. We have a requirement where color code of events in scheduler needs to be customized based on certain conditions. Is t...
How to undo the action DayPilot.Scheduler on event moved on the last event i saved without reloading the page?
Answered: try this code.. i hope i will helps you.. i did not use args.preventDefault(); but i use the code calling on events.php to load the updated data dp.message("MoveCancelled"); DayPilot.request("backend...
how to switch between monthView to dayView after clicking on monthview's date.
Hi, i have a requirement like, after clicking on the particular day in the monthView the view should be changed or reloaded to dayView with selected date in the monthview and with loading the records...
onBeforeHeaderRender() event was not called on initializing the event calendar
Hi, I'm working on the Daypilot event calendar javascript - version 1596. I have initialized the daypilot event calendar on a <DIV> with 3 resource columns and i'm modifying the resource column text ...
Childs open automatically when dragging over
Answered: You can turn it off using treeAutoExpand property:
dp.treeAutoExpand = false;
See also http://api.daypilot.org/daypilot-scheduler-treeautoexpand/
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...
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
How to show only two weeks in the weekly scheduler
Answered: Just use Days property:
<DayPilot:DayPilotScheduler
runat="server"
id="DayPilotScheduler1"
Days="14"
...
/>
Forbidd Events Overlapping
Answered: Please make sure that you are using an up-to-date CSS theme. Older themes may not include the *_shadow_overlap CSS class that is used to highlight the forbidden position. You can create a new theme i...
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 ?
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...
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 Start Time and End Time is not displayed for an Event in the Month View when CSSOnly = "True"
DayPilot Version - 7.9 We were using a older version of the DayPilot control and now upgraded to 7.9 version. We notice that after we upgraded the same, the event start time and end time is not displ...
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...
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...
Unexpected Number When Opening Add Event Dialog
Answered: You need quotes around the parameters so it produces something like this: timeRangeSelected('4/13/2015 12:00:00 AM', '4/19/2015 12:00:00 AM', '106'); Try this:
page.ClientScript.RegisterStartupScri...
Replace Open Source DLL with Trial DLL breaks app
When my DayPilot reference points to DayPilot Lite (version 5.0.302), and I run the project, I see DayPilot Scheduler rendered on the page. When I change the reference to the Trial version of DayPilo...
Pass additional data to makeDraggable
Answered: Build 1736 now copies all properties of the makeDraggable parameter (except of "duration" and "element") to the newly created DayPilot.Event.data property (which is accessible in onBeforeEventRender ...
EventBorder in PNG-Export
Hi, I have a DayPilotScheduler configured with EventBorderVisible=False. However when I export it to a png file the event borders are still shown. I use a rather old version of daypilot (6.2) if that...
Cannot get Id of the moved event in onEventMoved
Answered: Found it. There is a data object So args.e.data.id is the right property.