Hi, i use daypilot calendar in an ajaxtoolkit modalpopup extender and in this case the bubble are not dispayed. Did you have any idea to showing bubble Thanks
Hi, i use calendar ressouce view and i would like to have different height in different columns header level. HeaderHeight property affect all level. I have custom html only for the first level (date...
Answered: 1. This has been changed recently. The BeforeHeaderRender is not called for the corner anymore. You can modify it directly using .CornerHtml property: DayPilotCalendar1.CornerHtml = DayPilotCalendar1...
Answered: This looks like a bug. The ShowBaseTimeHeader will be deprecated in the next release (7.6). The time header rendering was changed significantly: 1. The time headers will be fully independent of the c...
Answered: The default CSS themes (white, green, transparent, etc.) and themes created using http://themes.daypilot.org should not affect the event dimensions. When adjusting the theme manually please remember ...
I have Used Multi level Header Ranging from Day - Hour - Minute(15 mins span) . It works fine when i run it in browser. But it gives some strange image as output when i export it. I have attached two...
Answered: You would have to do a manual refresh using commandCallBack(). See also here: http://doc.daypilot.org/scheduler/commandcallback/ But it is better to use dps.eventMenuClickCallBack() instead of PageMe...
Answered: The e.DataItem is only available in BeforeEventRender on the server side. For additional data that need to be passed with the event through all its lifecycle you should use tag fields (*DataTagFields...
Answered: This method was internal and is now hidden. You can use the following method to get information about a cell under certain position: var cell = dps.cells.findByPixels(120, 1)[0]; var start = cell.sta...
Answered: In the Lite version, CSS themes are only supported in version 4 and higher: http://www.daypilot.org/daypilot-lite-for-asp-net-webforms-4-0.html In both Pro and Lite, you need to follow these steps: 1...
Answered: Sorry, I'm still not able to reproduce the problem. Please check also the MoveBy property (it determines the drag handlers): http://doc.daypilot.org/scheduler/event-drag-handlers/ > BTW,Is it possibl...
Answered: All user actions (clicking, moving, resizing....) are disabled by default. You need to set EventClickHandling to either CallBack or PostBack in order to activate the server-side event handler. Exampl...
Answered: The left cell was using valign="top" which doesn't work well anymore. It's now updated - can you please try the latest sandbox build (7.5.2989)? http://www.daypilot.org/sandbox/
Hi, I am trying to get the eventmenuclick handler to work as a postback. I have a scheduler control timerangeselected handling to Hold and a context menu added to the scheduler. My expectation is tha...
Answered: You can set custom background color, HTML and CSS class for individual grid cells using BeforeCellRender event handler: http://doc.daypilot.org/scheduler/cell-customization/
Answered: You can control the hour range using DayBeginsHour and DayEndsHour properties. See also: http://doc.daypilot.org/calendar/overnight-scheduling/ You should be able to combine it with HeightSpec as nee...
Answered: This looks like a bug. The "null" text comes from CornerHtml property. You can use DayPilotScheduler1.CornerHtml = String.Empty in Page_Load as a workaround.