UWP Slider doesnt return non changed range value while Android does.

Code below works fine for Android but not for Uwp, for example if i move range start from 0 to 1 rangechanging e.start become 1 and e.end remains 5 on Android but
UWP e.start=1 e.end=0, otherway around if I slide RangeEnd from 5 to 4, e.start remains 1 in previous state on Android but On UWP it is always 0.
UWP just returns changed range and other is always 0. 

<range:SfRangeSlider x:Name="rangeSlider" Margin="0"   
                                                      RangeEnd="5" RangeStart="0"  ShowRange="true" Minimum="0" Maximum="5" SnapsTo="None" TickPlacement="Inline" TickFrequency="1" Orientation="Horizontal" 
                                                     ValuePlacement="TopLeft" ToolTipPlacement="BottomRight" ToolTipPrecision="2" RangeChanging="rangeSlider_RangeChanging"/>


 private void rangeSlider_RangeChanging(object sender, Syncfusion.SfRangeSlider.XForms.RangeEventArgs e)
        {
         
            var Start= e.Start;
           var End= e.End;
 

        }




2 Replies

PA Paul Anderson S Syncfusion Team August 10, 2018 09:58 AM UTC

Hi Emil, 
 
Greetings from Syncfusion. 
 
We have checked the reported issue with “UWP RangeSlider return wrong values in the RangeChanging event” and we are able to reproduce the reported issue at our end in Xamarin.Forms UWP platform. The fix will be available in our upcoming Volume 2 SP2 release which will be rolled out by the end of August 2018. 
 
Regards, 
Paul Anderson 



PA Paul Anderson S Syncfusion Team August 27, 2018 05:44 AM UTC

Hi Emil, 
 
We are sorry to let you know that due to control stability we have not included the fix “UWP RangeSlider return wrong values in the RangeChanging event” in our Volume 2 SP2 release and will be available in our upcoming Volume 3 release which will be rolled out by the end of September 2018. 
 
Regards, 
Paul Anderson 


Loader.
Up arrow icon