Unplanned
Last Updated: 08 Mar 2019 17:39 by ADMIN
ADMIN
Created by: Tsvyatko
Comments: 5
Category: ListView
Type: Feature Request
18
Add events to handle when listview cells are unloaded/recycled and prepared.
Unplanned
Last Updated: 25 Oct 2019 11:02 by ADMIN
Unplanned
Last Updated: 05 Nov 2019 12:05 by ADMIN
ADMIN
Created by: Tsvyatko
Comments: 6
Category: ListView
Type: Feature Request
13
Add support for Jump list in grouped scenario to simplify navigating between items
Unplanned
Last Updated: 26 Feb 2018 10:54 by ADMIN
ADMIN
Created by: Lance | Manager Technical Support
Comments: 0
Category: ListView
Type: Feature Request
11
Introduce ability to programmatically begin a cell swipe to reveal the SwipeContentTemplate. 

An example use case: tapping a vertical ellipsis button (context menu style) in cell template.
Unplanned
Last Updated: 17 Mar 2019 00:39 by ADMIN
ADMIN
Created by: Pavel R. Pavlov
Comments: 0
Category: ListView
Type: Feature Request
11
Currently the SelectedItems collection does not support two way binding. Expose API to support two way binding.
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
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
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: 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
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 | 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.
Unplanned
Last Updated: 27 Nov 2018 21:07 by Ak
Created by: Darrell
Comments: 2
Category: ListView
Type: Feature Request
3
Add the ability to specify a Template that should be shown when the List is empty (Xamarin Forms)
Unplanned
Last Updated: 29 Mar 2018 11:52 by ADMIN
Listview iOS: expose option to control selection visual position in relation to the main content.

It will be very useful in scenarios such as grid layout with images
Unplanned
Last Updated: 22 Apr 2020 02:22 by Mauricio
Created by: Mauricio
Comments: 2
Category: ListView
Type: Feature Request
2
I have the need to hide the horizontal scroll bar in the lists
Unplanned
Last Updated: 27 Feb 2018 07:43 by Gerry
Created by: Gerry
Comments: 0
Category: ListView
Type: Feature Request
2
Sometimes refreshing a list is done programmatically, not just by user gesture. 

It would be nice to have access to the ActivityIndicator programmatically. I can EndRefresh, but I cannot StartRefresh.
Unplanned
Last Updated: 15 Apr 2020 11:51 by ADMIN
Created by: Marginpoint
Comments: 0
Category: ListView
Type: Feature Request
2
The current behavior: When user swipes till the SwipeOffset, in our app it's restricted to 120, then a delete button will be visible at the extreme right of the cell with width=120. User can delete the item record from the ListView by clicking on this delete button. This is one way of item deletion.

We want to achieve another way to delete the item - when swiping beyond the offset 120, till the end of the cell, and it will automatically triggers the delete event.
Unplanned
Last Updated: 09 Nov 2017 15:30 by ADMIN
ADMIN
Created by: Stefan Nenchev
Comments: 0
Category: ListView
Type: Feature Request
2
We should consider adding such behavior where if the user clicks on the currently selected item -> it is not deselected. Currently, there is a workaround by working with the SelectedItems collection , keeping reference of the latest selected item and programmatically selecting it in case the collection is empty. 
Unplanned
Last Updated: 22 May 2019 12:39 by ADMIN
Created by: Georgi
Comments: 0
Category: ListView
Type: Feature Request
2
Provide a way to set header and footer that are always visible in the ListView and are excluded from the scrolling.
Unplanned
Last Updated: 05 Dec 2018 14:01 by ADMIN
ADMIN
Created by: Lance | Manager Technical Support
Comments: 1
Category: ListView
Type: Feature Request
2
Instead of just a tap and hold gesture, expose a method in the RadListView, which accepts a list view item, that can programmatically begin reorder mode.

Scenario Usage:
Touching a "handle" icon button the ListViewTemplateCell would immediately enter reorder mode instead of requiring a hold gesture.
Unplanned
Last Updated: 05 Oct 2018 09:54 by Didi
1 2 3