Unplanned
Last Updated: 18 Feb 2021 15:57 by ADMIN
After a reorder operation has been started, and the user drops down the item, every item between original position and new position is animated again as if refreshing the entire Ui of those items.
Completed
Last Updated: 24 Feb 2021 15:05 by ADMIN
Release R1 2021 SP1

After I updated to `2021.1216.1-hotfix` (to solve this problem in Android and Google Material) the RadListView's LoadOnDemand automatic  stopped working 

 

Workaround:

I've had to downgrade Xamarin.Google.Android.Material to v1.1.0.5 and use the latest stable release of Telerik UI v2021.1.119.1 which restored the functionality.


Unplanned
Last Updated: 27 Sep 2022 05:17 by ADMIN

when we try to add a dynamic AutomationId in each item of the list (something like AutomationId="{Binding Id}"), the AutomationId is not provided to the elements we see in the appium inspector. 

Works with fixed values

Unplanned
Last Updated: 17 Jun 2022 10:45 by Tom
When users trigger a swipe gesture of a ListView item and there is a change from code at that time, the UI is not updated immediately, but when the item is swiped back.
Unplanned
Last Updated: 30 Aug 2022 13:02 by Vladyslav
System.ObjectDisposedException:** 'Cannot access a disposed object.
Object name: 'Telerik.XamarinForms.DataControlsRenderer.Android.RadListViewDataSourceAdapter'.'

is thrown when navigating to another view using ListView SelectedItem and removing the view where the ListView is placed. 

Workaround:

Instead of removing the view, change the view visibility.

Completed
Last Updated: 20 Sep 2023 08:44 by ADMIN
Release R2 2023 SP1
MonoTouchException is thrown when using LoadOnDemand with ListViewLoadOnDemandCollection on iOS 16.
Completed
Last Updated: 21 Jun 2017 13:28 by ADMIN
ADMIN
Created by: Rosy Topchiyska
Comments: 0
Category: ListView
Type: Feature Request
0
Implement caching of images on Android.
Completed
Last Updated: 26 Feb 2018 16:35 by ADMIN
When Automatic LoadOnDemandBehavior is added to the ListView and the user try to scroll while new items are still loading the app crashes.

Available in the R2 2017 PS release.
Completed
Last Updated: 18 Oct 2017 15:04 by ADMIN
When you have set a group header template to the ListView and you rotate the Android device from Portrait to Landscape, the group headers that fail within the visible field are cut off.

Edit: Avalable in R3 2017 SP release.
Completed
Last Updated: 26 Feb 2018 10:50 by ADMIN
ADMIN
Created by: Georgi
Comments: 0
Category: ListView
Type: Bug Report
0
Available in minor release 2017.2.0818. It will also be available in the R3 2017 release.
Unplanned
Last Updated: 21 Jul 2017 08:08 by ADMIN
In a scenario where the RadListView is added to and removed from the visual tree multiple times, a memory leak occurs and the gref count always increases. 
Unplanned
Last Updated: 26 Feb 2018 10:33 by ADMIN
ADMIN
Created by: Lance | Senior Manager Technical Support
Comments: 0
Category: ListView
Type: Bug Report
0
When setting LineSeries StrokeThickness value in the PCL project (XAML or code-behind), it is not respected at runtime in the iOS project.

For now, the workaround is to use a custom renderer to reset the TKLineSeries's Palette with a new  TKPaletteItem containing a TKStroke with the preferred thickness value.
Completed
Last Updated: 26 Feb 2018 10:52 by ADMIN
When you have enabled multiple selection of the RadListView and are using the LoadOnDemand manual functionality, a check box appears on the "Load More" item as well.

Available in the R3 2017 SP release.
Unplanned
Last Updated: 06 Mar 2018 13:35 by ADMIN
Currently we support incremental loading, only. We need to allow item unloading as well as loading items at random batches. e.g. loading items from position 50 to position 62.
Unplanned
Last Updated: 29 Mar 2018 11:52 by ADMIN
ADMIN
Created by: Nikolay Demirev
Comments: 0
Category: ListView
Type: Feature Request
0
Presently there is only one event SelectionChanged, which is raised whenever the SelectedItems collection changes. This is confusing as the event is raised twice when a user clicks an item - first for the item that is removed, then for the item that is added. The event should be renamed to something like SelectedItemsCollectionChanged and a new event SelectedItemChanged should be added.
Completed
Last Updated: 21 May 2018 13:06 by ADMIN
Available in the R2 2018 release.
Unplanned
Last Updated: 19 Mar 2018 12:19 by ADMIN
ADMIN
Created by: Lance | Senior Manager Technical Support
Comments: 1
Category: ListView
Type: Bug Report
0
Client-reported issue with RadListView, request exception to be handled internally.

To reproduce:

Using RadListView' Getting Started example ViewModel and Model, the following will throw NullPointerException when ItemsSource is populated:

<telerikDataControls:RadListView ItemsSource="{Binding Source}" >
            <telerikDataControls:RadListView.ItemTemplate>
                <DataTemplate>
                    <listView:ListViewTemplateCell>
                        <listView:ListViewTemplateCell.View>
                            
                        </listView:ListViewTemplateCell.View>
                    </listView:ListViewTemplateCell>
                </DataTemplate>
            </telerikDataControls:RadListView.ItemTemplate>
</telerikDataControls:RadListView>




Completed
Last Updated: 26 Feb 2018 10:51 by ADMIN
ADMIN
Created by: Nikolay Demirev
Comments: 0
Category: ListView
Type: Bug Report
0
The item reorder works on mobile, but not Desktop.
Available in the R1 2018 release.
Completed
Last Updated: 26 Feb 2018 10:52 by ADMIN
If you use an enum property in the PropertyGroupDescriptor, an Objective-C exception is thrown in iOS. 

Workaround: Use an additional string property that will return a string value based on the enum value.

Available in the R1 2018 release. 
Unplanned
Last Updated: 07 Dec 2017 09:57 by ADMIN
When you have an Image inside the ListViewTemplateCell like this:

<telerikListView:ListViewTemplateCell>
    <telerikListView:ListViewTemplateCell.View>                         
                <Image Source="{Binding ImageSrc}" HorizontalOptions="Center" VerticalOptions="Start" />               
    </telerikListView:ListViewTemplateCell.View>
</telerikListView:ListViewTemplateCell>

in certain cases not all images are initially rendered.  As soon as you click any of the images, all of them are loaded.

As a workaround, avoid setting HorizontalOptions/VerticalOptions properties to the Image.