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

Calendar Week ViewMode is very different in iOS

4 Answers 104 Views
Calendar & Scheduling
This is a migrated thread and some comments may be shown as answers.
FS
Top achievements
Rank 1
FS asked on 08 Aug 2016, 05:12 PM

Hi Support:

We finished evaluating the Telerik UI controls for Xamarin Forms on Android and are now in the phase of evaluating the onthe iPhone. 

On Android, when the calendar viewmode is set to week, it shows the title and the day names properly. (please open the Android attachment).

However on the iPhone, the title and day names are not displayed.  Also the height of each day cell takes the whole vertical space, and we need to have the same height of the cell that is rendered on the Android (See iPhone attachment).

Please let us know how can we get the same look and feel on the iphone for these 3 things (cell height, title and day names).

Thanks

David

 

 

4 Answers, 1 is accepted

Sort by
0
Lance | Manager Technical Support
Telerik team
answered on 09 Aug 2016, 05:09 PM
Hello David,

You have opened a Forum post and Support Ticket at the same time for this issue. To provide you with the best support and experience no delays due to miscommunication, we need to choose one of the threads to work in.

Since Support Tickets allow you to attach project files, I am closing this forum thread and will follow up with you shortly in the ticket.

Regards,
Lance | Tech Support Engineer, Sr.
Telerik by Progress
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Feedback Portal and vote to affect the priority of the items
0
FS
Top achievements
Rank 1
answered on 09 Aug 2016, 05:23 PM

Thanks Lance, because we did not know how to remove the post in the forum.

 

 

0
Chad
Top achievements
Rank 1
answered on 18 Aug 2016, 02:48 PM
I'm seeing the same behavior, can you post the answer from the support ticket here so I can see it too?
0
Lance | Manager Technical Support
Telerik team
answered on 18 Aug 2016, 04:05 PM
Hi Chad,

We've confirmed the day names are lost when using week mode. Our developers are working on it and a fix will be included in our next official release, Q3 2016 (expected in mid-September). 

Regarding the control height, it can be set right after calling TrySetViewMode(...):

private void MonthButton_OnClicked(object sender, EventArgs e)
{
    MyRadCalendar.TrySetViewMode(CalendarViewMode.Month);
    Device.OnPlatform(iOS: () => MyRadCalendar.HeightRequest = 250);
}
  
private void WeekButton_OnClicked(object sender, EventArgs e)
{
    MyRadCalendar.TrySetViewMode(CalendarViewMode.Week);
    Device.OnPlatform(iOS: () => MyRadCalendar.HeightRequest = 110);
}


Regards,
Lance | Tech Support Engineer, Sr.
Telerik by Progress
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Feedback Portal and vote to affect the priority of the items
Tags
Calendar & Scheduling
Asked by
FS
Top achievements
Rank 1
Answers by
Lance | Manager Technical Support
Telerik team
FS
Top achievements
Rank 1
Chad
Top achievements
Rank 1
Share this question
or