Unplanned
Last Updated: 02 Jan 2024 13:42 by Jefferson

The FontSize of the Spinner ItemStyle changes when scrolling through the date/time and the Date/Time/TimeSpan and DateTime Pickers have SpinnerStyle

 

And the code used:

    <ContentPage.Resources>
        <ResourceDictionary>
            <Style x:Key="PopupSpinnerStyle" TargetType="telerikDataControls:RadSpinner">
                <Setter Property="HeightRequest" Value="220" />
                <Setter Property="ItemLength" Value="44" />
                <Setter Property="Margin" Value="0, 16"/>
                <Setter Property="ItemStyle">
                    <Setter.Value>
                        <Style TargetType="telerikDataControls:SpinnerItemView">
                            <Setter Property="TextColor" Value="LightCoral" />
                        </Style>
                    </Setter.Value>
                </Setter>
                <Setter Property="SelectedItemStyle">
                    <Setter.Value>
                        <Style TargetType="telerikDataControls:SpinnerItemView">
                            <Setter Property="TextColor" Value="Black" />
                            <Setter Property="FontAttributes" Value="Bold" />
                        </Style>
                    </Setter.Value>
                </Setter>
            </Style>

        </ResourceDictionary>
    </ContentPage.Resources>
    <StackLayout>
        <telerikInput:RadTimePicker SpinnerStyle="{StaticResource PopupSpinnerStyle}"/>
    </StackLayout>

Unplanned
Last Updated: 20 Oct 2021 07:20 by ADMIN
When you try to set the PickerPopupSelectorSettings.PopupViewStyle to a Style defined as a DynamicResource, the Style does not take any effect.  When defined as a StaticResource, it works as expected.
Unplanned
Last Updated: 05 Apr 2024 13:12 by ADMIN
If there is MinDate defined, for example 13th July 5:45 PM and if the user tries to select 14th July 5:40 PM, the spinner redirects incorrectly to 5:45 PM.
Unplanned
Last Updated: 07 May 2020 11:26 by ADMIN
We have a date time picker in scroll view. Scroll to the date time picker component. Click on the control to open the popup. Note that the scroll position is reset. Expected scroll position should not have changed.