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. 
Unplanned
Last Updated: 24 Mar 2025 10:48 by Legrand
Created by: Taylor
Comments: 2
Category: CollectionView
Type: Feature Request
7
Provide keyboard navigation support for CollectionView
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: 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

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.
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.
In Development
Last Updated: 13 Mar 2025 15:40 by ADMIN
There is a memory leak in the CollectionView on iOS/MacCatalyst - when the CollectionView control is on the page, the page does not dispose when GC runs. Same behavior happens with the RadListview.
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.
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: 28 Feb 2025 14:05 by John
programmatically cause a list item template to swipe itself
Unplanned
Last Updated: 26 Feb 2025 16:35 by Elke
CollectionView item swipe doesn't work.
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: 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.

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
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.
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 Jan 2025 09:37 by ADMIN
Created by: Didi
Comments: 2
Category: CollectionView
Type: Feature Request
7

In the current CollectionView implementation, the CollectionView will start with all the groups expanded. The only way to have any form of preference is to programmatically interact with the DataView after-the-fact https://docs.telerik.com/devtools/maui/controls/collectionview/grouping/expand-collapse

Requested Feature
A better approach that I am requesting a feature for is to have a property available for the CollectionView that sets this value ahead of time.

For example, you could add it as a BindableProperty on the GroupDescriptor class and on the GroupDefinition is to have an IsExapanded property.
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.
1 2