Release date: October 13, 2008 (build 1546)
Event drag operations (move, resize) are working properly in Days mode (ViewType="Days").
Status: Implemented
DayPilotScheduler.refreshCallBack() now accepts DayPilot.Date object as the first parameter (in addition to the standard Date object).
Status: Implemented
External drag&drop (moving an event from an outside source) now works again in DayPilot Scheduler.
Status: Implemented
See also:
Status: Implemented
DayPilot Scheduler now encodes the resource name using Server.HtmlEncode(). The raw HTML will be available in BeforeResHeaderRender event handler (e.InnerHTML).
Status: Implemented
Status: Implemented
Status: Implemented
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