This is a migrated thread and some comments may be shown as answers.

[Solved] Advanced Form Not showing Date and Time.

2 Answers 265 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
Prajeesh Prabhakar
Top achievements
Rank 1
Prajeesh Prabhakar asked on 20 Jan 2010, 11:14 AM
Hi all,
 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> 
and in the c#

  ResourceType resType = new ResourceType( "Provider" ); 
  resType.ForeignKeyField = "ProviderID"
 
  scheduler.ResourceTypes.Add( resType ); 
  forint 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

2 Answers, 1 is accepted

Sort by
0
Peter
Telerik team
answered on 20 Jan 2010, 12:23 PM
Hello Prajeesh,

Can you open a support ticket and send us a simple working demo of the problem?


Greetings,
Peter
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
0
Prajeesh Prabhakar
Top achievements
Rank 1
answered on 22 Jan 2010, 06:49 AM
I found the solution.
It is not the problem of scheduler. I am using a style sheet which a style for td like
td{ whitewhite-space:nowrap;} 
When I remove this from the CSS, it works. Can any one explain why the style change the Advanced Form?

Thanks & Regards
Prajeesh Prabhakar
Tags
Scheduler
Asked by
Prajeesh Prabhakar
Top achievements
Rank 1
Answers by
Peter
Telerik team
Prajeesh Prabhakar
Top achievements
Rank 1
Share this question
or