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

Change month, week with swipe right / left or up/down

8 Answers 219 Views
Calendar & Scheduling
This is a migrated thread and some comments may be shown as answers.
Shalin
Top achievements
Rank 1
Shalin asked on 12 Oct 2017, 05:38 AM

hi,

Is there a way to change month or week by swiping left/right or up/down in android and Ios ?

thank you

8 Answers, 1 is accepted

Sort by
0
Lance | Manager Technical Support
Telerik team
answered on 13 Oct 2017, 03:02 PM
Hi Shalin,

The RadCalendar supports swiping to change the current view. The swipe direction for each platform follows the design guidelines of that platform: on

For example, on Android you change by swiping Up/Down, and on iOS you swipe Left/Right.

Regards,
Lance | Tech Support Engineer, Sr.
Progress Telerik
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
Антон
Top achievements
Rank 1
answered on 15 Nov 2017, 01:41 PM

Hi Lance.

Is there a way to use swipe with range selection mode? In this mode swipe used for selecting, but it would be great to turn this off and allow user to change month.

0
Lance | Manager Technical Support
Telerik team
answered on 15 Nov 2017, 05:15 PM
Hello Антон,

Since you're using a selection mode that requires the swiping gesture (it uses both horizontal and vertical), you can't navigate at the same time. If you want the Calendar to use the horizontal swiping gesture on iOS, you're going to need to turn off Range selection first

For example:

var button = UIButton.FromType(UIButtonType.System);
button.SetTitle("Change Selection Mode", UIControlState.Normal);
button.TouchUpInside += (sender, e) =>
{
    if (CalendarView.SelectionMode == TKCalendarSelectionMode.Range)
        CalendarView.SelectionMode = TKCalendarSelectionMode.Single;
    else if (CalendarView.SelectionMode == TKCalendarSelectionMode.Single)
        CalendarView.SelectionMode = TKCalendarSelectionMode.Range;
};

I hope this helps, let us know if you have any further questions.

Note: If you have an implementation-specific issue, open a support ticket here and include your code or a runnable repro project.

Regards,
Lance | Tech Support Engineer, Sr.
Progress Telerik
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
Антон
Top achievements
Rank 1
answered on 16 Nov 2017, 08:08 AM

Hi,

Thanks for your reply! But it's still unclear for me, is there any way to turn off swipe selection in range mode? Ability for choose range by two taps on dates is enough for me. The problem is that I found a bug with swipe selection which I described here: https://feedback.telerik.com/Project/168/Feedback/List/Items%20you%20follow

So, I'm looking for some kind of workaround.  

0
Lance | Manager Technical Support
Telerik team
answered on 16 Nov 2017, 05:02 PM
Hello Антон,

I do understand what you're trying to achieve, there just is not a way to use RangeSelection mode without swipe. Instead, you can try Multiple selection mode.

Regarding your link to the feedback portal, that only goes to the "Items You Follow" page. Can you provide me with the direct link to the Feedback Item itself and I'll make sure the dev team has received it.

Regards,
Lance | Tech Support Engineer, Sr.
Progress Telerik
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
Антон
Top achievements
Rank 1
answered on 17 Nov 2017, 07:54 AM

Hello Lance,

Thanks for your help. Here the link to my ticket: https://feedback.telerik.com/Project/168/Feedback/Details/231782-calendar-range-select-issue

0
Антон
Top achievements
Rank 1
answered on 17 Nov 2017, 11:18 AM

I've tried to use Multiple selection as you advised. Looks like I found another issue.

I've got ViewMode = Month, SelectionMode = Multiple or Single, it does't matter and MaxDate = Today. I see this month and swipe left. Calendar shows me previous month. But then, when I swipe to the right nothing happens. I make a pinch and see the MonthNames ViewMode. I select current month and repeat swipes. It works like a charm! 

I'm already found a workaround for this issue, so just want to let you know about this. Also if it's necessary I could provide you with a video and a simple repro project. 

0
Lance | Manager Technical Support
Telerik team
answered on 17 Nov 2017, 04:03 PM
Hello,

Yes, if you have a repro project, please open a support ticket here and attach it so we can log it as a bug. If you're recorded a video, that would also allow the devs to quickly reproduce it as well. Additionally, when we log it, it goes into the Feedback Portal where you can follow the item and be notified of status changes.

Important Note

I noticed that you are not a license holder for UI for Xamarin, this means you cannot open a ticket. You have two options to proceed:

1 - Start a trial so you can get a trial license assigned to your account, this gives you full support during the trial period (go here)
2 - Have the owner of the UI for Xamarin license you're currently using assign you as the Licensed User (using the Manage Licensed Users portal)

Ultimately, our license policy is per-developer. It is a common scenario where a company or manager purchases the license, but are not the actual developer. This is why we created the Manage Licensed Users portal. It only take 30 seconds to assign, or reassign, the Licensed User.

It's also important to note that the owner of the license retains ownership even though they un-assign themselves and assign the developer. This means they can go in there and re-assign the Licensed User as needed.

Support tickets carry a guaranteed response time from one of the Telerik support engineers. We try to monitor forum thread and respond, however this is limited to available resources.

I hope I was able to clear things up and provide you with a route forward.

Regards,
Lance | Tech Support Engineer, Sr.
Progress Telerik
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
Shalin
Top achievements
Rank 1
Answers by
Lance | Manager Technical Support
Telerik team
Антон
Top achievements
Rank 1
Share this question
or