Declined
Last Updated: 31 Aug 2021 13:12 by Tom

When using a RadListview with a Grid or a Stack Layout in iOS I get the following exception. I haven't tested using the stacklayout outside of the RadListView nor have I tested it outside of the ItemTemplateSelector


Telerik.XamarinForms.Common.NotRegisteredRendererException: There is no renderer registered for the specified type: Xamarin.Forms.Grid
It works fine on Android. Below is the xaml I'm using.


<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
             xmlns:telerikDataControls="clr-namespace:Telerik.XamarinForms.DataControls;assembly=Telerik.XamarinForms.DataControls"
             xmlns:telerikListView="clr-namespace:Telerik.XamarinForms.DataControls.ListView;assembly=Telerik.XamarinForms.DataControls"
             xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
             xmlns:d="http://xamarin.com/schemas/2014/forms/design"
             xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
             xmlns:models="clr-namespace:AlertTest.Models"
             mc:Ignorable="d"
             xmlns:views="clr-namespace:AlertTest.Views"
             x:Class="AlertTest.Views.MainPage">
    <ContentPage.Resources>
        <ResourceDictionary>
            <DataTemplate x:Key="NonDivisibleTemplate">
                <Grid>
                    <StackLayout Orientation="Vertical" Padding="10" Spacing="0" BackgroundColor="Yellow" InputTransparent="True" Unfocused="StackLayout_Unfocused">
                        <Label Text="{Binding ItemText}"/>
                    </StackLayout>
            </DataTemplate>
            <DataTemplate x:Key="DivisibleTemplate">
                <Grid>
                    <StackLayout Orientation="Vertical" Padding="15" Spacing="0" BackgroundColor="White" Unfocused="StackLayout_Unfocused">
                        <Label Text="{Binding ItemText}" FontSize="Large" HorizontalTextAlignment="Center"/>
                        <Label Text="{Binding ItemText}" FontSize="Small" FontAttributes="Italic" TextColor="Gray"/>
                    </StackLayout>
                </Grid>
            </DataTemplate>

            <models:MyDataTemplateSelector
                x:Key="MyTemplateSelector"
                NonDivisibleTemplate="{StaticResource NonDivisibleTemplate}"
                DivisibleTemplate="{StaticResource DivisibleTemplate}" />
        </ResourceDictionary>
    </ContentPage.Resources>

    <StackLayout VerticalOptions="StartAndExpand">
        <!-- Place new controls here -->
        <views:FloatingLabelEntry EntryText="{Binding EntryText}" Margin="20" BackgroundColor="Yellow" PlaceholderText="{Binding PlaceholderText}"/>
        <Entry TextChanged="Entry_TextChanged" BackgroundColor="AliceBlue" Margin="20"/>
        <telerikDataControls:RadListView x:Name="listView" ItemsSource="{Binding ListItems}" ItemTemplateSelector="{StaticResource MyTemplateSelector}" SelectionMode="Single" IsItemSwipeEnabled="False" >
            <!--<telerikDataControls:RadListView.ItemSwipeContentTemplate>
                <DataTemplate>
                    -->
            <!--<Grid Margin="0"
                  Padding="0"
                  ColumnSpacing="0"
                  RowSpacing="0">-->
            <!--<Grid.ColumnDefinitions>
                            <ColumnDefinition Width="*" />
                            <ColumnDefinition Width="*" />
                        </Grid.ColumnDefinitions>-->
            <!--
                    <StackLayout Orientation="Horizontal" HorizontalOptions="FillAndExpand">
                        <Label BackgroundColor="#2474d2"
                       HorizontalTextAlignment="Start"
                               HorizontalOptions="StartAndExpand"
                       Text="Mark as read"
                       TextColor="White"
                       VerticalTextAlignment="Center" />
                        <Label Grid.Column="2"
                       BackgroundColor="Red"
                       HorizontalTextAlignment="End"
                               HorizontalOptions="EndAndExpand"
                       Text="delete"
                       TextColor="White"
                       VerticalTextAlignment="Center"/>
                    </StackLayout>
                    -->
            <!--</Grid>-->
            <!--
                </DataTemplate>
            </telerikDataControls:RadListView.ItemSwipeContentTemplate>-->
        </telerikDataControls:RadListView>
    </StackLayout>
</ContentPage>

Completed
Last Updated: 04 Oct 2019 14:46 by ADMIN
Release 2019.3.1004 (R3 2019 minor release)
GroupHeaderTemplate has a default gray background applied and setting Transparent does not take any effect.
Unplanned
Last Updated: 08 Oct 2019 10:45 by ADMIN
When swiping a cell, the swipe content of the cell will be shown if the swipe threshold is reached.  On iOS, the swipe content of another cell can be shown immediately by swiping another cell (which is an expected behaviour).  However on Android, when the user swipes another cell, the swipe content of the other cell isn't shown (while the swipe content of the first cell becomes hidden).  The user has to swipe the other cell again to show the swipe content.
Completed
Last Updated: 13 May 2020 13:14 by ADMIN
Release R2 2020
With Automatic LoadOnDemand, once all items are loaded and IsLoadOnDemandEnabled is set to false, when I scroll till the end the loading indicator keeps flickering on knowing that no more items are called.
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: 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: 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: 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: 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

Completed
Last Updated: 13 Apr 2021 11:56 by ADMIN
Release 2021.1.413 (R1 2021 minor release)
When you have Automatic LoadOnDemandMode enabled and use LoadOnDemand event to load the items,  the event is fired multiple times unnecessarily.
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: 24 Jun 2022 10:40 by Martin

On Android when adding new item to the ListView which is RadExpander with RadListView inside it, and when removing and adding item with different length the cell is not measured correctly. 

On iOS the ListView cell are not automatically sized. one height for cell is used

On UWP when adding the second item the app crashes with "System.ArgumentException: An item with the same key has already been added. Key: SDKBrowser.Examples.ListViewControl.GettingStartedCategory.GettingStartedExample.Product\r\n   at System.ThrowHelper.ThrowAddingDuplicateWithKeyArgumentException(Object key)\r\n   at System.Collections.Generic.Dictionary`2.TryInsert(TKey key, TValue value, InsertionBehavior behavior)\r\n   at Telerik.UI.Xaml.Controls.Data.ListView.Model.BaseLayoutStrategy.RecycleLocally()\r\n   at Telerik.UI.Xaml.Controls.Data.ListView.Model.BaseLayout"

Completed
Last Updated: 19 Jul 2023 14:23 by ADMIN
Release R2 2023 SP1
The ListView items are not rendered correctly when manual load on demand is used.
Completed
Last Updated: 31 Jan 2024 08:57 by ADMIN
Release 2024 Q1
The exception is easily reproducible in SDK Browser on iOS. Start the LoadOnDemandCommand or LoadOnDemandEvent example to see the exception. The LoadOnDemandCollection seems to work correctly, however.

The ListViewLoadOnDemandCollection can be used instead of the command/event as a temporary workaround, until the bug gets fixed.
Unplanned
Last Updated: 13 Feb 2024 12:22 by Amitesh
NSInternalInconsistencyException Reason: Invalid batch updates detected error is thrown in the ListView if you update the ItemsSource (clear it and add new items) simultaneously  ( from separate threads, by receiving messages through MessagingCenter)
Unplanned
Last Updated: 10 Apr 2024 06:18 by Matthew
Created by: Matthew
Comments: 0
Category: ListView
Type: Bug Report
2

App hangs when ListView uses dynamic size for the cells: 

iOS 16.7.5: Does not hang
iOS 17.3.1: Does not hang
iPadOS 16.3: Does not hang
iPadOS 17.1: Does not hang
iPadOS 17.2: Hangs/eventual app crash
iPadOS 17.3.1: Hangs/eventual app crash
Completed
Last Updated: 05 Jun 2024 11:14 by ADMIN
Release 2024 Q2
When ListView is grouped, if you select an item and then try to collapse the group, an NSInternalInconsistencyException is raised on iOS.  The issue occurs on iOS version > 16.
Completed
Last Updated: 02 Nov 2018 08:53 by Shalin
If you have set a custom LoadOndemandItemTemplate when the ListView is in manual LoadOnDemand mode, once you click the Load More button - it gets invisible. Clicking on the area where the button should be is working, though.

Available in the R2 2018 release.
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
Completed
Last Updated: 27 Jun 2017 10:13 by ADMIN