Telerik Forums
UI for Xamarin Forum
1 answer
41 views
I am using a picker column in a grid for all rows. When I double-click anywhere in the rows, all the selected values refresh and ask to 'Select a bin' again.  Also, there are no click events triggered in the grid. How to solve this issue?
      <telerikDataGrid:DataGridPickerColumn PropertyName="BinName" HeaderText="Dest_Bin" CanUserEdit="False">
                                <telerikDataGrid:DataGridPickerColumn.CellContentTemplate>
                                    <DataTemplate>
                                        <StackLayout Orientation="Horizontal">
                                            <Picker x:Name="BinPicker" Title="Select a Bin" ItemsSource="{Binding Dest_BinList, Converter={StaticResource BinSiteListConverter}}" SelectedItem="{Binding BinName}" SelectedIndexChanged="SiteBinPicker_SelectedIndexChanged" TextColor="Black" TitleColor="Coral" FontSize="15" >
                                            </Picker>
                                        </StackLayout>
                                    </DataTemplate>
                                </telerikDataGrid:DataGridPickerColumn.CellContentTemplate>
                            </telerikDataGrid:DataGridPickerColumn>

Didi
Telerik team
 answered on 27 Oct 2023
1 answer
190 views

Hi,

I'm trying to change the line colour of RadListPicker popup,

Please help me.

 

Didi
Telerik team
 answered on 30 Jul 2021
2 answers
95 views

I am working on styling the display label.  My hope is to get it to look like nearly identical to an RadEntry.

I have actually gotten pretty close, but one thing missing is a border.  ListPicker has a BorderColor property, but this does not actually put a border around the label, it is just an underline.  Is there a way to get an actual border without having to wrap the control inside a actual Border control?

Thanks

-Joe

Didi
Telerik team
 answered on 12 Apr 2021
2 answers
83 views
In UWP apps, is there a way to add support for scrolling through the items via using a mouse wheel?
Neil N
Top achievements
Rank 1
Iron
Veteran
Iron
 answered on 25 Jan 2021
1 answer
281 views
Is it possible to modify the list picker to support the selection of multiple items?
Lance | Manager Technical Support
Telerik team
 answered on 06 Jan 2021
9 answers
280 views

I have a small list, so would like to decrease the height of the ListPicker popup.  Is there a way to control this height?

Thanks

Yana
Telerik team
 answered on 11 Dec 2020
1 answer
101 views

I am trying to fid a way to reset the text on the ListPicker to the original placeholder text.  I use the ListPicker to run a filter on another list and when they clear this filter I want the text to return to the original.  I have searched through the properties on the ListPicker and cannot find where this 'picked' text value is

Thanks - joe

Joe
Top achievements
Rank 1
Veteran
 answered on 05 Nov 2020
2 answers
119 views
Hello
I have a problem in using RadListPicker, I use telerik ui R3 2020.3.916.1 version for xamarin.
When I use the ListPicker the objects inside the list do not fit on ios while on android they do, for example if my item is very long it is cut and does not allow you to read it all.
The problem occurs exclusively on IOS, I noticed in the forum that some users had reported the same problem on the ListView component and that this had been solved with an update, at the moment I have updated telerik to the latest version available but the problem is not solved .
What can I do?
Thanks bye.
Federico
Top achievements
Rank 1
 answered on 12 Oct 2020
2 answers
347 views

Good night friends,

 

How can I detect the cancel event?

When the confirm button is pressed,

I'm using the event:

_listPickerProduto.SelectionChanged + = listPickerProduto_SelectionChanged;

 

In the case of the cancel button I didn't find how to do it.

Thank you for your help

Klayton
Top achievements
Rank 1
Veteran
 answered on 28 Aug 2020
3 answers
466 views

for simplicity i have simplified this as much as possible.

 

I have a rad list with a number of different custom ListViewTemplateCell.View s one includes a custom version of the rad picker. I have created a bindable property (callled test below) which fires the first time the control is created but never fires after the bound value is updated (called AField for simplicity). I am calling OnPropertyChanged  for this field from the rows binding which I can confirm is working

 

if i take this all and put it into another custom control (based on radentry) on the same row it is working fine. Is this something that can be achieved with the picker control or will it not pick up properties changed like this?

////////////////////

 

 

                                <controls:DSRadPicker Grid.Column="0" Grid.Row="1" Test ="{Binding  AField, Mode=OneWay}"  DSSelectionChanged="DSRadPicker_SelectionChanged" />

 

public partial class DSRadPicker : RadListPicker 
    {

 public static readonly BindableProperty DSBindingProperty = BindableProperty.Create( 
             nameof(DSBinding),
             typeof(DSFormPickerListLine2),
             typeof(DSRadPicker),
             defaultValue: null,
             defaultBindingMode: BindingMode.TwoWay,
            propertyChanged: BindingPropertyChanged
        );

        public static readonly BindableProperty TestProperty =
               BindableProperty.CreateAttached(
                    nameof(Test),
             typeof(string),
             typeof(DSRadPicker),
                   "",
                   BindingMode.TwoWay,
                   null,
                   propertyChanged: HandleTextChanged);


        public string Test
        {
            get { return (string)GetValue(TestProperty); }
            set { SetValue(TestProperty, value); }
        }

        static void HandleTextChanged(BindableObject bindable, object oldValue, object newValue)
        {
            
        }

}

Didi
Telerik team
 answered on 15 Jul 2020
Top users last month
Dominik
Top achievements
Rank 1
Giuliano
Top achievements
Rank 1
Dominic
Top achievements
Rank 1
Glendys
Top achievements
Rank 1
NoobMaster
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?