Questions Tagged
Change Navigator Week When Event Clicked in Month
Answered: You can change the navigator date using .select(date) method: http://api.daypilot.org/daypilot-navigator-select/ You can call it from the EventClickJavaScript handler:
@Html.DayPilotMonth("dpm", ne...
day pilot displaying all three calendar?????
when ever i m clicking on toolbar command event is not firing and when page is open all three calendar that is daycalendar,weekcalendar and monthcalendar are visible????? y is it so ny help???
Text/Description for a seperator
Hey Dan! Can you add a Text to a seperator to descripe it? You could add a bubble for a short time when you do a mouseover over the seperator. Or show the text on the upper of the seperator. thanks d...
item duplicates
Answered: Please make sure that your resources have unique IDs and that the correct resource ID is specified for the event (see DataResourceField property). The event will be displayed in all rows where the re...
All Day Event with Calendar Week View and WeekStart with Monday
Answered: This issue is fixed now in 7.7. SP2 release: http://www.daypilot.org/daypilot-pro-for-asp-net-webforms-7-7-sp2.html You can download the new version here: http://www.daypilot.org/try.html
Problem with localization
Answered: Alex, You need to register it using DayPilot.Locale.register() method:
DayPilot.Locale.register(localeMy);
The .register() method must be invoked on DayPilot.Locale object directly (not on an ins...
Event is displayed twice (Dynamic Loading)
Answered: This bug is fixed now in build 7.7.781. Please see the sandbox: http://javascript.daypilot.org/sandbox/
timeHeader Bubble in the scheduler?
Hi, i want to use a Bubble onmouseover on the timeHeader, f.a. on the day. howto? thanks
Ability to extract only the necessary modules to include in a web app
Hi, We are considering using DayPilot Pro for Javascript in our web application. The only concern we have is that it is too big (478 kB minified) and there are modules that we don't need such as Gant...
Fix the upper Resource?
Answered: This would be a nice feature but it's not quite easy to implement it... I'm adding it to the wishlist.
Zooming in JS-Version?
Answered: The zooming implementation in the ASP.NET demo (http://www.daypilot.org/demo/Scheduler/Zooming.aspx) is quite simple: It overrides the default time header cell text using BeforeTimeHeaderRender event...
Is it possible to get information of selected timerange while selecting?
Answered: This feature is in the works. I will be available in 1-2 weeks.
Capture global mousedown/up event
I need to capture any mousedown and mouseup event fired on the scheduler. I've tried just adding an eventlistener to the entire dps container like this: $("#dps")[0].addEventListener("mousedown", fun...
Show more than one bubble at the same time
Answered: The bubble is designed to display just a single box at the same time. All previously displayed bubbles will be hidden when displaying a new one. Also, the bubble is hidden when you move the mouse out...
Insert a dropdown in datagrid
Answered: It is difficult to insert full-blown ASP.NET controls in the headers. However, there are two options: 1. Use the custom HTML (using BeforeResHeaderRender event handler) to insert HTML-based dropdown....
Execute javascript function after clicking ok button on event creation DayPilot Month.
Hello! My name is Roby. I'm using DayPilot Month Lite in my project. I need to trigger a javascript function after I click the OK Button into the event creation alert. My big questions (after reading...
Dynamic height of month calendar view events
Answered: Please see here: http://forums.daypilot.org/Topic.aspx/2238/set-event-hight-in-onbevoreeventrender
How to read anr write tags?
Answered: OK I solved it by myself. e.data.tag["key"] = value; to read: e.tag("key")
modal will not stay on top of web page!
Answered: Comment out the line 189 in daypilot-modal-2.1.js (http://code.daypilot.org/81367/daypilot-modal):
window.setTimeout(function() {
// This.hideDiv.onclick = function() { This.hide(); };
}, 500);...
Issues to preserve dataset on month view navigation changes
Answered: How do you implement the filter? The recommended way to is store the filter in .clientState and update the calendar using .commandCallBack().
$(document).ready(function() {
$("#dropdown").ch...
set event hight in OnBevoreEventRender
Answered: DayPilot Month uses the same event height for all events. You can set it using the CSS theme but it is still the global height. http://doc.daypilot.org/month/event-height/ Using a different height fo...
ModalPopupExtender does not popup
Answered: Please take a look at this tutorial: http://www.daypilot.org/tutorial-calendar-sqlserver.html You have to call pnlPopup.Show() from the code behind to display the modal popup. However, my advice is t...
modal border change cursor
hi! want to change the cursor when mouseover the border auf a modal popup. thanks
Intercept Modal close/hide
Hi! I use the Modal popup. I want to intercept the closing/hiding of the modal. I want to ask the User if he saved everything - after that the modal can be closed. If the user clicks "no" the modal s...
Event assigned to duplicated resource (scheduler)
Answered: If you use the same resource id then it will be displayed in both rows.
Scheduler: IE7 Script Error
Answered: Please note that IE 7 is not supported since the 7.7 release. Anyway, this issue is fixed now in build 7.7.3061. You can test and download it in the sandbox: http://www.daypilot.org/sandbox/Scheduler...
Calendar: "Unable to set property 'innerHTML' of undefined or null reference" in build 7.7.3054
Answered: Thanks for reporting the issue. It's fixed now in build 7.7.3058 (see the sandbox at http://www.daypilot.org/sandbox/). The fix will be included in the next release. The bug affected the CssOnly="fal...
Month.CellHeight
Answered: Please use MinCellHeight property instead: http://doc.daypilot.org/month/cell-height/ The DayPilot Month cell height is extended automatically to fit all the concurrent events.
Prevent Adjusting Start and Prevent End being Adjusted to less than certain date
Answered: At this moment there is no way to apply such limitations on the client side during the drag and drop operation but you can check the rules on the server side in the OnEventResize and/or OnEventMove o...