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 | Senior 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: 07 Feb 2020 14:00 by ADMIN
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.
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: 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.

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: 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: 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.
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: 26 Feb 2024 13:26 by ADMIN

If the ListView ItemTemplate contains more elements and you try to load more items (>15 items), there is a crash on iOS related to layout arrangements.

To workaround the issue, set explicitly ItemLength:

<telerikDataControls:RadListView.LayoutDefinition>
       <telerikListView:ListViewLinearLayout ItemLength="400" />
</telerikDataControls:RadListView.LayoutDefinition>

Unplanned
Last Updated: 23 Feb 2024 08:10 by ADMIN

When using load on demand mode manual, and collapsing groups, one item left not collapsed.

Unplanned
Last Updated: 02 Mar 2023 14:27 by James
Created by: James
Comments: 0
Category: ListView
Type: Bug Report
3
when using the ItemHold event and command. The event is not fired and the command is not executed
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.
1 2 3 4 5 6