asp.net アプリケーションでデイパイロット スケジュールを使用しています。コード ビハインドで DataValuefield の値を取得するにはどうすればよいですか。
<DayPilot:DayPilotScheduler ID="DayPilotScheduler1" runat="server"
DataStartField="start"
DataEndField="end"
DataIdField = "AppId"
DataTextField="name"
DataValueField="id"
ViewType="Gantt"
>
</DayPilot:DayPilotScheduler>
e.Value を試しましたが、取得していDataIdField
ます。入手方法はDataValueField
?
Protected Sub DayPilotScheduler1_EventMove(ByVal sender As Object, ByVal e As EventMoveEventArgs)
Dim id as string = e.Value //gets DataIdField
End Sub