Unplanned
Last Updated: 21 Nov 2018 06:17 by ADMIN
When RadListView is placed inside Grid with ColumnDefinition with Height="Auto", setting FlowDirection to "RightToLeft" raises an exception.
Unplanned
Last Updated: 21 Jun 2018 13:07 by ADMIN
When reordering items in the ListView sometimes the user might want the item to go to the end of a long list. It is not possible, because the ListView does not scroll while dragging the item.
Completed
Last Updated: 18 Oct 2021 14:56 by ADMIN
Release R1 2020 SP1
Created by: Ron
Comments: 2
Category: ListView
Type: Feature Request
5
Users should be allowed to disable swiping in one direction only.
Unplanned
Last Updated: 26 May 2020 15:00 by ADMIN

when a new ObservableCollection is assigned to the listview's ItemsSource during load on demand, there is an inconsistency in the scrolling.
- On Android the listview is scrolled to the top immediately and showing items at the top of the listview.

-On iOS and UWP, the listview position is not changed.

Completed
Last Updated: 28 Oct 2022 05:58 by ADMIN
Release R3 2022.3.1026

With iOS 16 some changes are introduced to the UICollectionView. This breaks the layout of the ListView with dynamically sized items.

Unplanned
Last Updated: 03 Jul 2024 08:54 by DZavala
It is not possible to reduce the height of the LoadOnDemandItemTemplate if the ItemLength in ListViewLinearLayout was modified on iOS.
Unplanned
Last Updated: 19 Dec 2019 14:31 by ADMIN

The BorderLocation property of ListViewItemStyle seems to either not be working correctly, or is severely limited in its capabilities.  Although the Location enum is not marked with [Flags], the values 0, 1, 2, 4, 8, 15 seem to imply bit flags that should be able to get OR'd together. However, when trying to use Location.Top | Location.Bottom, the result is NO border at all.

 

Example:

    public class BorderLocationExample : ContentPage
    {
        private readonly ListViewItemStyle BorderAll = new ListViewItemStyle
        {
            BorderColor = Color.Blue,
            BorderLocation = Location.All,
            BorderWidth = 8
        };

        private readonly ListViewItemStyle BorderTop = new ListViewItemStyle
        {
            BorderColor = Color.Blue,
            BorderLocation = Location.Top,
            BorderWidth = 8
        };

        private readonly ListViewItemStyle BorderTopAndBottom = new ListViewItemStyle
        {
            BorderColor = Color.Blue,
            BorderLocation = Location.Top | Location.Bottom, // <-- DOESN'T WORK !!!  These items have NO border at all.
            BorderWidth = 8
        };

        public BorderLocationExample()
        {
            BackgroundColor = Color.Gray;

            var items = new ObservableCollection<string>
            {
                "Item 1",
                "Item 2",
                "Item 3",
            };

            Content = new StackLayout
            {
                Orientation = StackOrientation.Vertical,
                Children =
                {
                    new RadListView
                    {
                        ItemsSource = items,
                        ItemStyle = BorderAll
                    },
                    new RadListView
                    {
                        ItemsSource = items,
                        ItemStyle = BorderTop
                    },
                    new RadListView
                    {
                        ItemsSource = items,
                        ItemStyle = BorderTopAndBottom
                    },
                }
            };
        }
    }

Unplanned
Last Updated: 01 Apr 2020 14:00 by ADMIN
We are experiencing a hard crash when updating a collection that is the source for a RadListView.   This appears to only occur in Android 10 on Samsung device with Bixby Button enabled.   
Unplanned
Last Updated: 31 Oct 2018 13:02 by ADMIN
It seems the scroll position is calculated incorrectly in this case.
Unplanned
Last Updated: 06 Mar 2019 16:39 by ADMIN
The control listen for changed to re-filter, so when any property is updated, there is a side effect on iOS - the entry used for editing loses focus.
Completed
Last Updated: 21 Jun 2017 12:09 by Namek
Example:
<telerikListView:ListViewItemStyle BackgroundColor="{DynamicResource MedLightGrey}" BorderColor="{DynamicResource LightGrey}" BorderWidth="1" BorderLocation="Bottom"/>

Available in the R2 2017 PS release
Unplanned
Last Updated: 29 Mar 2018 08:25 by ADMIN
ADMIN
Created by: Tsvyatko
Comments: 0
Category: ListView
Type: Feature Request
4
Add support for group aggregates in the headers of ListView
Completed
Last Updated: 19 Feb 2020 16:24 by ADMIN
Release R1 2020 SP1
ADMIN
Created by: Nikolay
Comments: 5
Category: ListView
Type: Bug Report
4
This can be reproduced in the SDK examples ->ListView -> Gestures -> CellSwipeEvents. 
1. Change the content of the items so that they have uneven height
2. Scroll down 
3. Delete an item by swiping
-> Expected result : The items re-arrange correctly
-> Actual result : The item is deleted but the ListView is scrolled up when the UI is updated
Unplanned
Last Updated: 29 Mar 2018 11:52 by Mikas
ADMIN
Created by: Ves
Comments: 1
Category: ListView
Type: Feature Request
4
Implement OData support in RadListView
Completed
Last Updated: 21 May 2018 13:02 by N Mackay
ADMIN
Created by: Rosy Topchiyska
Comments: 1
Category: ListView
Type: Feature Request
4
Add support for expand/collapse functionality for ListView groups.

Available in the R2 2018 release.
Unplanned
Last Updated: 29 Mar 2018 11:52 by N Mackay
ADMIN
Created by: Tsvyatko
Comments: 1
Category: ListView
Type: Feature Request
3
Add support for group footer
Completed
Last Updated: 21 Feb 2018 09:11 by ADMIN
ADMIN
Created by: Rosy Topchiyska
Comments: 2
Category: ListView
Type: Feature Request
3
Provide a notification mechanism when the user holds on a specific item.

Available in the R1 2018 SP release. More information: https://docs.telerik.com/devtools/xamarin/controls/listview/features/listview-features-events
Unplanned
Last Updated: 28 Apr 2020 11:10 by ADMIN
ADMIN
Created by: Pavel R. Pavlov
Comments: 1
Category: ListView
Type: Feature Request
3

Allow customers to enable the animations of the native control when items are being inserted, moved, deleted or the entire data reloaded.

native iOS ListView animations: https://docs.telerik.com/devtools/xamarin/nativecontrols/ios/listview/animations

native android ListView animations: https://docs.telerik.com/devtools/xamarin/nativecontrols/android/listview/listview-itemanimations

Unplanned
Last Updated: 29 Mar 2018 11:43 by ADMIN
ADMIN
Created by: Lance | Senior Manager Technical Support
Comments: 0
Category: ListView
Type: Feature Request
3
Currently checkboxes are only available for multiple selection on iOS. Client feature request to have them available for other platforms.
Completed
Last Updated: 13 May 2020 13:13 by ADMIN
Release R2 2020
ADMIN
Created by: Lance | Senior Manager Technical Support
Comments: 2
Category: ListView
Type: Bug Report
3
The LoadOnDemandItemTemplate's HorizontalOptions setting is ignored on Android, it will always be left aligned.

See this screenshot for comparison of 3 target platforms side-by-side: https://www.screencast.com/t/K5oWBcP0dLQM

The DataTemplate is as follows:
<telerikDataControls:RadListView.LoadOnDemandItemTemplate>
    <DataTemplate>
        <Grid BackgroundColor="Red" 
                   HorizontalOptions="End">
             <Label FontSize="24"
                         HorizontalOptions="End"
                         Text="Load more items"
                         TextColor="Black" />
        </Grid>
    </DataTemplate>
</telerikDataControls:RadListView.LoadOnDemandItemTemplate>