All Questions

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 eve...

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....

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); But...

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").change(func...

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...

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...

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...

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.

How to display modal dialog after button click

Answered: If you mean DayPilot.Modal ( http://code.daypilot.org/81367/daypilot-modal ) and a generic ASP.NET button you can try this: <asp:Button id="Button1" runat="server" OnClientClick="new DayPilot.Modal()...

Getting back additional data from calendarbackend

Answered: You can send custom data using Update() method: http://doc.daypilot.org/calendar/callback-update/ The data parameter will be passed to AfterRenderJavaScript. It is stored in CallBackData internally.

Default Themes

Answered: They are now used in the theme designer for all new themes: http://themes.daypilot.org/ Just start a new one and download it.

Reload single event from database

Answered: If you want to refresh the events it is better to use .events.list array instead of .events.add() method. Adding events one by one using .events.add() works too but it is slower (it refreshes the sch...