Skip to content
DayPilot

DayPilot Pro 6.3

Release date: February 23, 2011 (build 2226)

(F) Recurrence Support for Scheduler

scheduler recurrent events

DayPilot Scheduler now supports recurrent events.

It uses the model already implemented in the Calendar:

(F) Recurrence Support for Month

DayPilot Month now supports recurrent events.

It uses the model already implemented in the Calendar:

(F) Horizontal AutoScroll (Scheduler)

The Scheduler supports autoscrolling. If you move a mouse close to the right or left border of the visible range the scheduler starts scrolling further in that direction.

This helps with moving/resizing the events beyond the visible time range.

AutoScrolling is enabled by default. You can turn it off by setting AutoScroll="Disabled".

(F) 100% Height (Scheduler)

DayPilotScheduler.HeightSpec can be set to Parent100Pct. This will set the total Scheduler height to 100% of its parent element.

In order to fill the browser window with the Scheduler control, all parent elements (including <html> and <body>) must use style="height:100%".

    <style type="text/css">
    html, body {
        height:100%;
    }
    </style>

See also Demo/Scheduler/Parent100Pct.aspx for an example.

(F) 100% Height (Calendar)

DayPilotCalendar.HeightSpec can be set to Parent100Pct. This will set the total Calendar height to 100% of its parent element.

In order to fill the browser window with the Scheduler control, all parent elements (including <html> and <body>) must use style="height:100%".

    <style type="text/css">
    html, body {
        height:100%;
    }
    </style>

See also Demo/Calendar/Parent100Pct.aspx for an example.

(F) Context Menu for Time Cells (Month)

DayPilot Month now supports context menu for time cells. At this moment it's enabled for right click on a single cell.

Setup

  1. Create a new DayPilotMenu control.
  2. Assign its ID to DayPilotMonth.ContextMenuSelectionID.
  3. Handle DayPilotMonth.TimeRangeMenuClick event. This event will be triggered by menu item with Action set to CallBack or PostBack.

(F) Menu Title Reenabled for Context Menu

The context menu title is now supported again.

Usage

  1. Set DayPilotMenu.ShowMenuTitle="true"
  2. Change DayPilotMenu.MenuTitle as needed. The default value is "Event".

CSS Styling

The menu title can be styled using CSS classes. The title CSS class suffix is title.

Example

<DayPilot:DayPilotMenu ID="DayPilotMenuSelection" runat="server" CssClassPrefix="menu_">
...
</DayPilot:DayPilotMenu>

CSS

.menu_title
{
    background-color: #f2f2f2;
    border-bottom: 1px solid gray;
    padding: 4px 4px 4px 37px;
}

Bug Fixes and Minor Improvements

Calendar

Scheduler

Month

Modal.js