Answered: The clientState value is only synchronized during calls that are coming from the DayPilot control (either PostBack or CallBack). That means it's not available on the server side when you push a Butto...
Answered: You can call dps.hideMessage() using JavaScript. The message will be more configurable in one of the future releases. It will be possible to customize the appearance and timeout, both globally and in...
Answered: Unfortunately, it's not implemented yet. It's on the wishlist with a hight priority. However, I'm not sure if it will be available in the 6.5 release ( http://www.daypilot.org/daypilot-pro-6-5.html ).
Answered: The Lite edition doesn't have a client-side (JavaScript) API. You can handle the EventClick event using JavaScript but you will need to invoke the delete command manually using custom PostBack call o...
Hello, I am new about DayPilot. I'd like to know how could I enter inline edit mode. I have seen the source of DayPilot Pro, but I do not understand how it is implemented. Does anyone help me? Thank ...
Answered: The z-index of the DayPilotMonth control can't be set directly but you can put it inside a special div with z-index specified: <div style="z-index:1"> <DayPilot:DayPilotMonth ...... /> </div>
Answered: You can change the value anytime but you need to force a full client-side reload using Update(): DayPilotScheduler1.Update(CallBackUpdateType.Full);
Answered: Please see an example from Demo/Scheduler/Default.aspx.cs: protected void DayPilotScheduler1_BeforeResHeaderRender(object sender, DayPilot.Web.Ui.Events.BeforeHeaderRenderEventArgs e) { if (e.IsCorne...
Answered: Scheduling applications might get complex easily and I won't pretend DayPilot has a prebuilt solution for all the cases. One of the first things you may need to do is to switch from a simple one-tabl...
First of all, thanks for sharing and providing this wonderful control.. my problem is i don't know how to change the freetime tile/cell whenever it is clicked.. could someone tell me thanks in advanc...
Answered: In the Calendar, the maximum CellDuration is 60 (minutes). In the Scheduler, you can set it to whatever you want but it will be the same for all cells. That means it will not be practical for months ...
Answered: I suggest taking a look at the page HTML source. There is a JavaScript block that initialized DayPilotCalendar. It looks like this: <script type='text/javascript'> /* DayPilotPro: 6.5.2299.0 */ funct...
Answered: It's now possible to use rounded event corners in the Month control as well: http://www.daypilot.org/demo/Month/RoundedCorners.aspx See also: http://www.daypilot.org/daypilot-pro-6-4.html
Answered: You can use BeforeCellRender event handler: protected void DayPilotMonth1_BeforeCellRender(object sender, DayPilot.Web.Ui.Events.Month.BeforeCellRenderEventArgs e) { if (e.Start == DateTime.Today) { ...