在 Asp.Net WebForms 的 DayPilot 调度程序上,如果 ShowNonBusiness 设置为 false 或者我使用 OnIncludeCell 事件隐藏一些时间标题,则事件拖动或调整大小不起作用。我使用的是 2020 年发布的 DayPilot 版本,然后升级到 2021 年 3 月的最新版本,并且两者都有相同的问题。有人有解决这个问题的方法吗?这是我的dps配置:
<DayPilot:DayPilotScheduler ID="DS"
runat="server"
ClientObjectName="dps1"
Width="100%"
HeightSpec="Fixed"
Height="700"
EventHeight="30"
EventFontSize="11px"
CellDuration="30"
CellGroupBy="Day"
CellWidth="30"
RowHeaderWidthAutoFit="false"
HeaderHeight="20"
HeaderFontSize="8px"
DataStartField="start"
DataEndField="end"
DataTextField="InfoPreview"
DataValueField="id"
DataResourceField="PlantBayId"
DataTagFields="id, name"
ScrollLabelsVisible="false"
EnableViewState="false"
FloatingEvents="false"
BusinessBeginsHour="6"
BusinessEndsHour="22"
ShowNonBusiness="false"
UseEventBoxes="Never"
DynamicLoading="false"
DynamicEventRendering="Disabled"
ProgressiveRowRendering="true"
ProgressiveRowRenderingPreload="30"
ContextMenuID="DayPilotMenuEvents"
ContextMenuSelectionID="DayPilotMenuSelection"
ContextMenuResourceID="DayPilotMenuResources"
OnCommand="OnCommand"
OnBeforeEventRender="OnBeforeEventRender"
OnBeforeTimeHeaderRender="OnBeforeTimeHeaderRender"
OnBeforeCellRender="OnBeforeCellRender"
>
<Resources>
</Resources>
</DayPilot:DayPilotScheduler>