We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date

[WinRT Schedule Control]How to disable the touch navigation between dates?

Hi,

How to disable the touch navigation between dates in the Schedule Control?

5 Replies

JO Joy Oyiess Rex  K Syncfusion Team January 13, 2014 11:30 AM UTC

Hi Riccon,

 

Thanks for your interest in Syncfusion products.

 

Based on the implementation of SfSchedule control in WinRT, we are able to use Mouse to navigate between dates, but we are not able to disable the touch navigation in Schedule control.

 

Could you please share us the exact scenario for your requirement of disabling the touch navigation in WinRT SFSchedule control? So that we could analyse on it and provide you possible solution.

 

Please let us know, if you  have any concerns.

 

Regards,

Joy Oyiess Rex K



RI Riccon January 13, 2014 11:48 AM UTC

Hi,

I would like to arrange a series of several schedule control on one screen. And if one or more of them will be outside the viewable area of the screen, the finger could scroll through and see them all.


JO Joy Oyiess Rex  K Syncfusion Team January 14, 2014 04:56 AM UTC

Hi Riccon,

 

Thanks for your update,

 

We are currently analysing on it, we will let you know the detail in two business days(Jan 16, 2014).

 

Please let us know, if you have any concerns.

 

Regards,

Joy Oyiess Rex K



JO Joy Oyiess Rex  K Syncfusion Team January 16, 2014 12:28 PM UTC

Hi Riccon,

 

We appreciate your patience.

 

We have analysed your requirement, based on the implementation of SfSchedule control, as we have handled the manipulation internally, we are not able to achieve your requirement of disable the touch navigation in SfSchedule control.

 

Please let us know, if you need any further assistance.

 

Regards,

Joy Oyiess Rex K



SE Selvakumar June 24, 2014 10:10 AM UTC

Hi

    We can handle the touch navigation disable by the following way

    public MainView()
        {
            this.InitializeComponent();
            Schedule.ManipulationMode = ManipulationModes.TranslateX | ManipulationModes.TranslateY;
            Schedule.ManipulationStarted += OnManipulationStarted;
        }

        private void OnManipulationStarted(object sender, ManipulationStartedRoutedEventArgs e)
        {
            e.Complete();
        }

Loader.
Live Chat Icon For mobile
Up arrow icon