Active Questions
How to change button label on the confirm popup.
Answered: The confirm() dialog is provided by the browser and it's not possible to change the buttons.
Scroll labels don't show
Answered: Scroll labels are available again since 6.2 SP6 release: http://www.daypilot.org/daypilot-pro-6-2-sp6.html
Scroll labels won't display
Answered: Scroll labels are available again since 6.2 SP6 release: http://www.daypilot.org/daypilot-pro-6-2-sp6.html
how do you show current day in week and day view
Answered: You can use DateTime.Today as DayPilotScheduler.StartDate. This will display today as the first day in the matrix. If you want to show a full week and just set the initial scroll position to today, u...
how to change the value of the multipal DayPilotCalendar based on the click of DayPilotNavigator
Answered: Please see here: http://kb.daypilot.org/61736/how-to-bind-navigator-to-multiple-controls/
how to change the colour of e.DurationBarColor
Answered: You need to add this: DataTagFields="color" and handle BeforeEventRender event:
protected void DayPilotCalendar1_BeforeEventRender(object sender, BeforeEventRenderEventArgs e)
{
e...
hide non business hours with fixed height Calender
Answered: DayEndsHour property will be available in DayPilot Pro for ASP.NET 6.5 release: http://www.daypilot.org/daypilot-pro-6-5.html
Show weeknumbers in DayPilotNavigator?
Answered: You can show week numbers using ShowWeekNumbers="true". See also: http://www.daypilot.org/daypilot-pro-6-0.html
Unsupported Escape Sequence
Answered: It should be fixed now in 6.4 SP1: http://www.daypilot.org/daypilot-pro-6-4-sp1.html
No weekends on Schedular, Month view
Answered: In the Scheduler control, it's possible to hide weekends using ShowNonBusiness="false": http://www.daypilot.org/scheduler-hiding-non-business-hours.html In the Month control, it's possible to use Sho...
Displaying business hours in the Scheduler eg 9-5
Answered: Please see here: http://www.daypilot.org/scheduler-hiding-non-business-hours.html
Update DayPilot and GridView with Callback
Answered: CallBack can be used primarily for changes of the DayPilot control itself. Changes to other parts of the page have to be done manually using AfterRenderJavaScript. It would be possible to send the da...
How to change the default holiday in schedular Control?
Answered: Customizing the background colors: http://www.daypilot.org/scheduler-custom-cell-rendering.html Hiding non-business days (including customization): http://www.daypilot.org/scheduler-hiding-non-busine...
How to add different colors for days and weeks header
Answered: You can use BeforeTimeHeaderRender event handler to change properties of the time header cells. Example:
protected void DayPilotScheduler1_BeforeTimeHeaderRender(object sender, DayPilot.Web.Ui.Even...
Adding columns to DayPilot Scheduler
Answered: Please see here: http://www.daypilot.org/scheduler-row-header-columns.html
ContextMenu CSS Support
Answered: CSS styling of the menu is now fully supported since 6.1 release: http://www.daypilot.org/daypilot-pro-6-1.html See also: http://www.daypilot.org/menu-css-class-styling.html
How to Custom Sort Resources
Answered: The order in which you add the resources to the Resources collection is preserved.
Can the scheduler handle multiple time zones
Answered: Unfortunately, this scenario is not supported at the moment.
Setting DataTextField to an object's property which is string array
Answered: You will probably have to change the structure of your data source. DayPilot converts the value of the specified field to string using Convert.ToString() call. The other option is to change it in the...
DayPilot Calendar for MVC
Answered: The latest sandbox build now contains a demo page that shows a hierarchy of resources: http://mvc.daypilot.org/sandbox/Calendar/DaysResources The sources is a modified Calendar/Index example. 1. The ...