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: 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: 19 Dec 2022 09:35 by Günter
For example inside the popup on first place the time selector could be defined.
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: 03 Dec 2020 15:48 by ADMIN
Created by: Francisco Manuel
Comments: 2
Category: DateTimePicker
Type: Feature Request
2

Hello,

 

We have implemented a control that displays a RadDateTimePicker and we are using it on Android, iOS and UWP platforms with Xamarin.Forms.

We would like the popup to be positioned just below or above the control that displays it, could you tell us how it would be possible to do this?

We are using this nugets versions:

  • Telerik 2020.3.1106.1
  • Xamarin.Forms 4.7.0.1142

 

Greetings.

Unplanned
Last Updated: 26 May 2020 07:16 by ADMIN
Created by: Ryan
Comments: 3
Category: DateTimePicker
Type: Feature Request
1
There isn't a button built on the control to allow the user to clear the selected values. 
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.