Hi all,
I have a Scheduler control with resource grouping like
and in the c#
My problem is the advanced form doesn't show the Date and Time. It only contains the subject and the resource type 'Provider'.
Give me a solution for this problem.
Thanks & Regards
Prajeesh Prabhakar
I have a Scheduler control with resource grouping like
| <telerik:RadScheduler ID="scheduler" runat="server" Width="100%" Height="80%" Skin="Office2007" |
| DataKeyField="Name" DataStartField="Start" DataEndField="End" DataSubjectField="Subject" |
| DayStartTime="08:00:00" DayEndTime="21:00:00" ShowFooter="false" RowHeight="22px" |
| MinutesPerRow="15" TimeLabelRowSpan="4" MonthVisibleAppointmentsPerDay="5" RowHeaderWidth="40px" |
| ShowFullTime="true" OverflowBehavior="Scroll" ShowAllDayRow="false" Font-Names="Segoe UI" |
| Font-Size="12px" GroupBy="Provider" GroupingDirection="Horizontal" HoursPanelTimeFormat="h ttt"> |
| <AdvancedForm Modal="true" DateFormat="M/d/yyyy" TimeFormat="h:mm tt" /> |
| <TimelineView UserSelectable="false" /> |
| <TimeSlotContextMenuSettings EnableDefault="true" Skin="Office2007" /> |
| <AppointmentContextMenuSettings EnableDefault="true" Skin="Office2007" /> |
| </telerik:RadScheduler> |
| ResourceType resType = new ResourceType( "Provider" ); |
| resType.ForeignKeyField = "ProviderID"; |
| scheduler.ResourceTypes.Add( resType ); |
| for( int i = 0; i < ProvidersList.CreateProvidersList().Count; i++ ) |
| { |
| scheduler.Resources.Add( new Resource( "Provider", i, ProvidersList.CreateProvidersList()[i] ) ); |
| } |
My problem is the advanced form doesn't show the Date and Time. It only contains the subject and the resource type 'Provider'.
Give me a solution for this problem.
Thanks & Regards
Prajeesh Prabhakar