DayPilot Pro 5.0 SP1

Release date: October 13, 2008 (build 1546)

Bug fixes

1. Bug: DayPilot Scheduler in Days mode

Event drag operations (move, resize) are working properly in Days mode (ViewType="Days").

Status: Implemented

2. Bug: refreshCallBack() doesn't accept DayPilot.Date object (DayPilot Scheduler)

DayPilotScheduler.refreshCallBack() now accepts DayPilot.Date object as the first parameter (in addition to the standard Date object).

Status: Implemented

3. Bug: External drag&drop doesn't work (DayPilot Scheduler)

External drag&drop (moving an event from an outside source) now works again in DayPilot Scheduler.

Status: Implemented

4. Bug: It's possible to resize a multi-day event using the day brake border (DPC)

See also:

Status: Implemented

Improvements

1. Improvement: DayPilot Scheduler resources name HtmlEncoded

DayPilot Scheduler now encodes the resource name using Server.HtmlEncode(). The raw HTML will be available in BeforeResHeaderRender event handler (e.InnerHTML).

Status: Implemented

2. Improvement: Upper-left corner is updated during callback Update(Full)

Status: Implemented

3. Improvement: Resources column is updated during callback Update(Full)

Status: Implemented

4. AfterRender client-side handler fired for initial rendering as well (DayPilot Calendar, DayPilot Scheduler)

Example:

<DayPilot:DayPilotScheduler ... AfterRenderJavaScript="afterRender(data, isCallBack)" />
<script type="text/javascript">
function afterRender(data, isCallBack) {
  if (isCallBack) {
    alert('Rendering finished (after callback)');
  }
  else {
    alert('Rendering finished (initial or PostBack)');
  }
}
</script>

See also:

Status: Implemented