Hello,
When adding a new meeting, I wondering how to preselct the resource in the edit detail view.
With the following control I want to have a preselection on TeamMember when I add a meeting on the related line (for example to preselect John Doe if I add a meeting on the line of John Doe). As per today code, it is not working (see below).
Thank you for your help
David
When adding a new meeting, I wondering how to preselct the resource in the edit detail view.
With the following control I want to have a preselection on TeamMember when I add a meeting on the related line (for example to preselect John Doe if I add a meeting on the line of John Doe). As per today code, it is not working (see below).
Thank you for your help
David
| <telerik:RadScheduler ID="RadScheduler1" runat="server" | |
| DataSourceID="RP_NG_Assignment" | |
| HoursPanelTimeFormat="htt" | |
| SelectedView="TimelineView" | |
| TimelineView-NumberOfSlots="28" | |
| TimelineView-SlotDuration="1.00:00:00" | |
| GroupBy="TeamMember" | |
| GroupingDirection="Vertical" | |
| ValidationGroup="RadScheduler1" | |
| DayStartTime="08:00:00" | |
| DayEndTime="17:00:00" | |
| TimeZoneOffset="01:00:00" | |
| ColumnWidth="50px" | |
| Height="100%" | |
| DataEndField="End" | |
| DataKeyField="ID" | |
| DataStartField="Start" | |
| DataSubjectField="Subject" | |
| Skin="Office2007" > | |
| <ResourceTypes> | |
| <telerik:ResourceType DataSourceID="RP_NG_User" ForeignKeyField="UserID" KeyField="GlobeID" Name="TeamMember" TextField="FullName" /> | |
| <telerik:ResourceType DataSourceID="RP_NG_Roles" ForeignKeyField="RoleID" KeyField="ID" Name="Roles" TextField="Name" /> | |
| </ResourceTypes> | |
| </telerik:RadScheduler> |