Unplanned
Last Updated: 01 Mar 2021 07:55 by ADMIN
We have RadListView and its ItemTemplate there is a RadPopup control (shown as a context menu). If we open and close the popup, then ListView Pull To Refresh event is not triggering.  This issue is only happening on iOS devices whereas same code is working on Android devices. 
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.
Unplanned
Last Updated: 09 Nov 2020 10:48 by ADMIN
When ListView is grouped with sticky group headers enabled, and items have dynamic size in order to adjust their content, the ListView is not rendered correctly when scrolled.
Unplanned
Last Updated: 05 Oct 2020 12:07 by ADMIN

When an item in the ItemsSource of a ListView is null, a NullReferenceException will be raised on Android when the items source is loaded to the list view.  Even if a DataTemplateSelector is applied to display a different datatemplate for null items, the app would still crash.

I attached a sample program that demonstrates the issue.  On iOS the app runs fine, but on Android the app crash at launch with a NullReferenceException.

Thanks,
Kori

Unplanned
Last Updated: 10 Sep 2020 08:30 by ADMIN
Implementation/exposure of FocusedItemStyle
Implementation/exposure of HoverItemStyle, for when the mouse pointer is over an item cell
Unplanned
Last Updated: 10 Sep 2020 09:03 by ADMIN

When RadListView is in grid mode (SpanCount > 0), there is no spatial navigation with the keyboard.

Up and down arrows move the focused item, left and right arrows don't. (Also: it doesn't seem to be possible to style the focused item…)

Crude drawing:

 

Only the first column has keyboard navigation, up and down. It's invisible, though; internally, an item is focused and will execute ItemTap when pressing the return key, or will select the item when pressing the spacebar. That part is fine.

 

After clicking/tapping an item in any column after the first one and then pressing the down arrow, for example, we get this:

Pink is where we clicked/tapped, cyan is what's internally focused after pressing the down arrow. 

Please note again that focus != selection. 

 

Expected behavior:

  • Implementation/exposure of FocusedItemStyle
  • Left and right keyboard arrows should move focus spatially inside the grid; if RadListView is in 1-column (list) mode, Left == Up, Right == Down

 

Further suggestions:

  • Implementation/exposure of HoverItemStyle, for when the mouse pointer is over an item cell
  • (changed) ScrollItemIntoView(object item, boolean focusItemAfterScroll, boolean selectItemAfterScroll)
  • (new) FocusItem(object item) 
  • (new) SelectItem(object item) 
Unplanned
Last Updated: 07 Dec 2021 11:57 by ADMIN
When you place a Label with TextType set to "Html" inside ListView TemplatedCell, the ListVIew renders only the items currently in the viewport - if you scroll down, the listview is empty. 
Unplanned
Last Updated: 10 Jul 2020 08:31 by ADMIN
If you try to set/bind Zoom property of the Chart, the specified Zoom level is not taken into account
Unplanned
Last Updated: 03 Jun 2020 11:43 by ADMIN
If RadListView has Automatic LoadOnDemand enabled, and at some point when a LoadOnDemand operation is initiated ( user scrolls up to load more items), but the result is empty collection, the loading indicator is not hidden and further loading on demand is not possible.
Unplanned
Last Updated: 03 Jun 2020 05:55 by ADMIN
In cases ItemTemplate is defined in a way that items can have different height and LoadOnDemand is enabled, the newly loaded items sometimes are not rendered correctly ( their height is messed up).
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: 26 May 2020 09:05 by ADMIN
Currently if RadListView is grouped and reorder enabled, users can drag items to different groups - the drag and drop to different groups can be prevented only on ReorderEnded event. Provide a way to prevent the user from visually dragging the item past the bounds of the outer group.
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: 15 Apr 2020 12:27 by ADMIN
When the SwipeOffset property is set at a later stage, the cell will be moved beyond the offset. 
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 Apr 2020 08:37 by ADMIN
Created by: Joshua
Comments: 1
Category: ListView
Type: Feature Request
1

Does the RadListView control support snap scrolling? I could not find any documentation on this. 

  • Snap scrolling is when a user swipes to initiate a scroll, the end position of the scroll can be controlled so that items are fully displayed. This feature is known as snapping, because items snap to position when scrolling stops.
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: 12 Mar 2020 10:51 by ADMIN
Created by: Manoj
Comments: 0
Category: ListView
Type: Feature Request
0

The staggered layout lays out items in a staggered grid formation. the layout is available as follow:

Telerik Ui for Xamarin.iOS ListView

Telerik UI for Xamarin.Android ListView

Telerik UI for UWP ListView

Unplanned
Last Updated: 21 Jan 2020 07:39 by ADMIN
I have a listview with item templates in a modal popup but it is not visible on iOS simulator. On Android device it is OK.
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
                    },
                }
            };
        }
    }