In Development
Last Updated: 26 Mar 2025 15:26 by ADMIN
Setting the ItemViewStyle to have a Margin of any value greater than zero makes the items height to increase continuously when scrolling. 
In Development
Last Updated: 19 Mar 2025 09:54 by ADMIN
When removing items from the collection's item source, the group header item count does not update real time. It only updates when the GroupContext is collapsed or expanded. This would also be an issue if items are added dynamically.
Under Review
Last Updated: 07 Mar 2025 07:49 by Malcolm
Created by: Malcolm
Comments: 7
Category: CollectionView
Type: Bug Report
2
Our error reporting is getting multiple of these crashes:
Message: Object reference not set to an instance of an object
Telerik.Maui.Data.LocalDataSourceProvider.ProcessCollectionChanged(NotifyCollectionChangedEventArgs e)
Telerik.Maui.Data.LocalDataSourceProvider.ProcessPendingChanges()
Telerik.Maui.Data.LocalDataSourceProvider.OnCompleted(Object sender, DataEngineCompletedEventArgs e)
Telerik.Maui.Data.ParallelDataEngine.RaiseCompleted(DataEngineCompletedEventArgs args)
Telerik.Maui.Data.ParallelDataEngine.ProcessBottomLevelsParallel(Task`1 bottomLevelResultsTask, ParallelState parallelState)
Telerik.Maui.Data.ParallelDataEngine+<>c__DisplayClass102_0.<BeginParallelProcessing>b__1(Task`1 task)
System.Threading.Tasks.ContinuationTaskFromResultTask`1[[Telerik.Maui.Data.ParallelDataEngine+GroupingResults, Telerik.Maui.Core, Version=10.0.0.0, Culture=neutral, PublicKeyToken=5803cfa389c90ce7]].InnerInvoke()
System.Threading.Tasks.Task+<>c.<.cctor>b__292_0(Object obj)
System.Threading.ExecutionContext.RunFromThreadPoolDispatchLoop(Thread , ExecutionContext , ContextCallback , Object )
System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()
System.Threading.ExecutionContext.RunFromThreadPoolDispatchLoop(Thread , ExecutionContext , ContextCallback , Object )
System.Threading.Tasks.Task.ExecuteWithThreadLocal(Task& , Thread )

unfortunately we don't have a repro for this crash just yet.

It does look like it's occuring on iOS only.
Unplanned
Last Updated: 28 Feb 2025 14:05 by John
programmatically cause a list item template to swipe itself
In Development
Last Updated: 21 Mar 2025 11:45 by ADMIN
Steps to Reproduce

1. Create a RadCollectionView with an ObservableCollection<ButtonModel> as the ItemsSource.

2. Use a DataTemplate inside RadCollectionView.ItemTemplate to display buttons.

3. Bind button properties (IsOddClick, IsEvenClick) that should change on click.

4. Click the button inside the RadCollectionView and observe that:

5. The text updates correctly, but part of it is cut off. It seems the text does not expand 
In Development
Last Updated: 04 Mar 2025 17:05 by ADMIN

1. Bind the CheckedItems collection of the TreeView to the CollectionView ItemsSource.

2. there aren't any items in the TreeView initially.  Add items to it

3. Start checking the checkboxes

4. The items are added to the CollectionView, still they are not visible in the control.

 

Unplanned
Last Updated: 26 Feb 2025 16:35 by Elke
CollectionView item swipe doesn't work.
Unplanned
Last Updated: 19 Feb 2025 12:34 by Ryan

Having a RadExpander inside the ItemTemplate breaks the Drag and Drop gesture of the RadCollectionView. 

When Using MAUI CollectionView and RadExpander in the template, drag and drop works.

In Development
Last Updated: 19 Mar 2025 16:49 by ADMIN

The content inside the swipe template is missing when using MAUI 9.0.40 and Telerik MAUI 10.0.0

Workaround:

Use MAUI 9.0.30 and Telerik MAUI 10.0.0

Unplanned
Last Updated: 05 Feb 2025 07:10 by Nathan
The RadListView Delegate sort, filter and group descriptors have bindable properties, for example: Func<object, object) KeyExtractor, Filter.
The RadCollectionView delegate descriptors use KeyLookup, Filter which type is interface and do not expose bindable properties.

the option is to implement an interface
Completed
Last Updated: 17 Mar 2025 13:31 by ADMIN
Release 10.0.0 (2025 Q1)
Created by: Zelin
Comments: 17
Category: CollectionView
Type: Bug Report
7
I observe scrolling issues in the CollectionView on iOS when using Maui 9.0.30 version. 
For example the control has 25 items, I can scroll only to the first 10-11, cannot see the rest of the items.
Unplanned
Last Updated: 28 Jan 2025 09:01 by ADMIN
When scrolling to the last item using the ScrollITemIntoVIew() method to show the last item of a CollectionView, It doesn't scroll to the end of the list and only show the first pixels of the last item.
Unplanned
Last Updated: 24 Jan 2025 19:24 by ADMIN
When having swipe and tap gestures and building on Samsung device with android 13 the swipe gesture is with higher priority. the sensitivity of swipe is very high, resulting in not recognizing the tap.
In Development
Last Updated: 24 Feb 2025 12:49 by ADMIN
When UseWindowSoftInputModeAdjust to Resize and keyboard closes, the CollectionView does not scroll.
Unplanned
Last Updated: 21 Jan 2025 05:51 by ADMIN

The ItemsSource of the views is populated in the ViewModel of the page. This is done in a command that is triggered by the NavigatedTo event of the page, which is forwarded via EventToCommandBehavior from the Maui Toolkit.

When using the RadCollectionView the loaded items are no longer displayed. 

When the ObservableCollection of the items is completely reconstructed and reassigned the display works.

Unplanned
Last Updated: 16 Dec 2024 13:13 by ADMIN

See simple example baaaaif/CollectionViewFilterIssue (MainPage.xaml.cs) to reproduce, click hide and show

When items are filtered through a FilterDescriptor they are hidden - correct
Trying to show the previously hidden items they don't appear again as expected - bug

I've used a BooleanFilterDescriptor and a DelegateFilterDescriptor, both don't work.

Stops me from using the RadCollectionView control

 

Unplanned
Last Updated: 22 Nov 2024 08:07 by Mauricio
Created by: Mauricio
Comments: 0
Category: CollectionView
Type: Feature Request
1
Provide a pressed visual state.
Unplanned
Last Updated: 13 Nov 2024 15:55 by Didi
Implement alternating item styles for CollectionView.
Unplanned
Last Updated: 13 Nov 2024 15:54 by Didi

Currently, the LoadOnDemandCollection accepts a callback of the following format in the constructor:

public LoadOnDemandCollection(Func<CancellationToken, IEnumerable> action)

It is a very common scenario to populate the items asynchronously. In its current form the collection would require blocking the current thread to populate the results:

ItemsSource = new LoadOnDemandCollection((cancelationToken) =>
{
    var result = new List<ItemsModel>();
    try
    {
        var items = dataService.GetItemsAsync().Result;

        // TODO: Handle the result.

        return result;
    }
    catch (Exception e)
    {
        // TODO: Handle the exception.
        return null;
    }
});

 

This is not desired, as using Task.Result blocks the current thread and is considered an anti-pattern, in general.

A better approach would be to add a second overload of the constructor, allowing asynchronous calls:

public LoadOnDemandCollection(Func<CancellationToken, Task<IEnumerable>> action)

This way we can use async and await in the callback instead:

ItemsSource = new LoadOnDemandCollection(async (cancelationToken) =>
{
    var result = new List<ItemsModel>();
    try
    {
        var items = await dataService.GetItemsAsync();

        // TODO: Handle the result.

        return result;
    }
    catch (Exception e)
    {
        // TODO: Handle the exception.
        return null;
    }
});

According to my tests, the first blocking approach is not a problem, as the LoadOnDemandCollection starts a thread internally. That behavior is not obvious however, and using Task.Result is somewhat counterintuitive, so the second approach is much better from the user's perspective.

Unplanned
Last Updated: 13 Nov 2024 15:52 by Didi

we have additional field in City class (CountryFlag as Image)

public class City
{
public string Name { get; set; }
public string Country { get; set; }
public Image CountryFlag { get; set; }
}

We want to display the image instead of the property we group by. Provide such option to define which proeprty to be displayed in the group header.

 

 

 

 

 

1 2