Unplanned
Last Updated: 08 Aug 2024 09:39 by Srilekha
Srilekha
Created on: 08 Aug 2024 09:39
Category: DateTimePicker
Type: Bug Report
0
DateTimePicker: Setting IsLooping to the spinners through SpinnerStyle does not have effect

When setting the IsLooping property to "False" through SpinnerStyle property, the infinite looping while scrolling is not disabled.

<ContentPage.Resources>
<Style TargetType="telerik:RadSpinner" x:Key="spinnerStyle">
    <Setter Property="IsLooping" Value="False" />
</Style>
</ContentPage.Resources>

<VerticalStackLayout WidthRequest="300" HorizontalOptions="Center">
    <telerik:RadDateTimePicker x:Name="dateTimePicker"
                                                  SpinnerStyle="{StaticResource spinnerStyle}"
                                                  MinimumDate="2020/01/01"
                                                  MaximumDate="2026/12/31" />
</VerticalStackLayout>

0 comments