Unplanned
Last Updated: 12 Mar 2024 08:54 by Oussama
Created by: Oussama
Comments: 0
Category: ListPicker
Type: Feature Request
0
Provide a way to detect when the selector is toggled, so custom logic can be implemented accordingly.
Unplanned
Last Updated: 15 Feb 2024 14:05 by Walter
Created by: Daniel
Comments: 1
Category: ListPicker
Type: Feature Request
2

I know there is already a SelectedItem property for the RadListPicker, but I would also like a SelectedIndex property

Thank you,

Daniel

Declined
Last Updated: 15 Mar 2023 12:22 by ADMIN

SDKBrowserMaui application, change PopupStyling.xaml and see that text changes are not reflected in the control.

For example, changing it to:

            <Style TargetType="Button" x:Key="cancelButtonStyle">
                <Setter Property="BackgroundColor" Value="Transparent"/>
                <Setter Property="Text" Value="bob"/>
                <Setter Property="TextColor" Value="#1188FF"/>
            </Style>

Text is not applied. It affects all pickers.

Workaround: 

Set Accept and Cancel Button text properties to the pickers: 

<telerikInput:RadDatePicker >
            <telerikInput:RadDatePicker.SelectorSettings>
                <telerikInput:PickerPopupSelectorSettings 
                                                          HeaderLabelText="Date Picker"
                                                          AcceptButtonText="Yes"
                                                          CancelButtonText="X"/>
            </telerikInput:RadDatePicker.SelectorSettings>
        </telerikInput:RadDatePicker>

Completed
Last Updated: 01 Mar 2023 14:44 by Daniel
Created by: Daniel
Comments: 2
Category: ListPicker
Type: Bug Report
0

On Windows, the RadListPicker's Placeholder is misaligned:

code used:

<telerikInput:RadListPicker Grid.Row="0" Grid.Column="3" x:Name="routeTypeListPicker"  HorizontalOptions="CenterAndExpand" VerticalOptions="CenterAndExpand" HeightRequest="40"  WidthRequest="120" Margin="5"
                          ItemsSource="{Binding RouteTypeItems}" 
                          DisplayMemberPath="Value"
                          SelectedItem="{Binding SelectedRouteTypeItem, Mode=TwoWay}">
                    </telerikInput:RadListPicker>

Declined
Last Updated: 27 Feb 2023 13:45 by ADMIN
Created by: Marc
Comments: 1
Category: ListPicker
Type: Bug Report
3
There is a layout issue in the popup, then the text is longer. With shorter text no issues. 
Unplanned
Last Updated: 29 Mar 2022 15:56 by Daniel
Created by: Daniel
Comments: 0
Category: ListPicker
Type: Feature Request
1
Add mouse scroll wheel support on Windows.