Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DataGrid event handling bug. #4969

Open
2 of 14 tasks
davidxuang opened this issue Jan 26, 2024 · 4 comments
Open
2 of 14 tasks

DataGrid event handling bug. #4969

davidxuang opened this issue Jan 26, 2024 · 4 comments
Labels
bug 🐛 An unexpected issue that highlights incorrect behavior DataGrid 🔠 Issues on DataGrid control needs attention 👋 needs triage 🔍

Comments

@davidxuang
Copy link

Describe the bug

When DataGrid handles a remove event when resort happens, it gets the removed item from the sender:

                        _owner.RemoveRowAt(index, sender[index]);

However, since the item is already removed from the sender, it will get the wrong item. This can be verified by the source of AdvancedCollectionView

                _view.RemoveAt(oldIndex);
                var targetIndex = _view.BinarySearch(item, this);
                if (targetIndex < 0)
                {
                    targetIndex = ~targetIndex;
                }


                // Only trigger expensive UI updates if the index really changed:
                if (targetIndex != oldIndex)
                {
                    OnVectorChanged(new VectorChangedEventArgs(CollectionChange.ItemRemoved, oldIndex, item));

Particularly, if an item is removed from the end, the index will be out of the bound of the source list, thus an ArgumentOutOfRangeException will be thrown by the AdvancedCollectionView, with such stack trace:

 	System.Private.CoreLib.dll!System.ThrowHelper.ThrowArgumentOutOfRange_IndexMustBeLessException() Line 118	C#
 	System.Private.CoreLib.dll!System.Collections.Generic.List<object>.this[int].get(int index) Line 152	C#
 	CommunityToolkit.WinUI.UI.dll!CommunityToolkit.WinUI.UI.AdvancedCollectionView.this[int].get(int index) Line 117	C#
 	CommunityToolkit.WinUI.UI.Controls.DataGrid.dll!CommunityToolkit.WinUI.UI.Controls.DataGridInternals.DataGridDataConnection.NotifyingDataSource_VectorChanged(Windows.Foundation.Collections.IObservableVector<object> sender, Windows.Foundation.Collections.IVectorChangedEventArgs e) Line 579	C#
 	CommunityToolkit.WinUI.UI.Controls.DataGrid.dll!CommunityToolkit.WinUI.UI.Controls.DataGridInternals.DataGridDataConnection.WireEvents.AnonymousMethod__74_2(CommunityToolkit.WinUI.UI.Controls.DataGridInternals.DataGridDataConnection instance, object source, Windows.Foundation.Collections.IVectorChangedEventArgs eventArgs) Line 451	C#
	CommunityToolkit.WinUI.UI.Controls.DataGrid.dll!CommunityToolkit.WinUI.Utilities.WeakEventListener<CommunityToolkit.WinUI.UI.Controls.DataGridInternals.DataGridDataConnection, object, Windows.Foundation.Collections.IVectorChangedEventArgs>.OnEvent(object source, Windows.Foundation.Collections.IVectorChangedEventArgs eventArgs) Line 32	C#
 	CommunityToolkit.WinUI.UI.dll!CommunityToolkit.WinUI.UI.AdvancedCollectionView.OnVectorChanged(Windows.Foundation.Collections.IVectorChangedEventArgs e) Line 702	C#

Regression

No response

Reproducible in sample app?

  • This bug can be reproduced in the sample app.

Steps to reproduce

Build a `DataGrid` based on `AdvancedCollectionView` which enables sorting. An exception will be thrown in `AdvancedCollectionView.ItemOnPropertyChanged()` if the tail element is removed from `AdvancedCollectionView._view`.

Expected behavior

The DataGrid should get the right removed item when handling event.

Screenshots

图片
图片

Windows Build Number

  • Windows 10 1809 (Build 17763)
  • Windows 10 1903 (Build 18362)
  • Windows 10 1909 (Build 18363)
  • Windows 10 2004 (Build 19041)
  • Windows 10 20H2 (Build 19042)
  • Windows 10 21H1 (Build 19043)
  • Windows 11 21H2 (Build 22000)
  • Other (specify)

Other Windows Build number

No response

App minimum and target SDK version

  • Windows 10, version 1809 (Build 17763)
  • Windows 10, version 1903 (Build 18362)
  • Windows 10, version 1909 (Build 18363)
  • Windows 10, version 2004 (Build 19041)
  • Other (specify)

Other SDK version

No response

Visual Studio Version

2022

Visual Studio Build Number

No response

Device form factor

Desktop

Nuget packages

communitytoolkit.winui.ui.controls 7.1.2
communitytoolkit.winui.ui.controls.datagrid 7.1.2

Additional context

No response

Help us help you

Yes, I'd like to be assigned to work on this item.

@davidxuang davidxuang added the bug 🐛 An unexpected issue that highlights incorrect behavior label Jan 26, 2024
@ghost ghost added the needs triage 🔍 label Jan 26, 2024
@ghost
Copy link

ghost commented Jan 26, 2024

Hello davidxuang, thank you for opening an issue with us!

I have automatically added a "needs triage" label to help get things started. Our team will analyze and investigate the issue, and escalate it to the relevant team if possible. Other community members may also look into the issue and provide feedback 🙌

@Arlodotexe Arlodotexe added the DataGrid 🔠 Issues on DataGrid control label Jan 27, 2024
@ghost ghost added the needs attention 👋 label Feb 11, 2024
@ghost
Copy link

ghost commented Feb 11, 2024

This issue has been marked as "needs attention 👋" due to no activity for 15 days. Please triage the issue so the fix can be established.

2 similar comments
@ghost
Copy link

ghost commented Feb 26, 2024

This issue has been marked as "needs attention 👋" due to no activity for 15 days. Please triage the issue so the fix can be established.

@ghost
Copy link

ghost commented Mar 12, 2024

This issue has been marked as "needs attention 👋" due to no activity for 15 days. Please triage the issue so the fix can be established.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug 🐛 An unexpected issue that highlights incorrect behavior DataGrid 🔠 Issues on DataGrid control needs attention 👋 needs triage 🔍
Projects
None yet
Development

No branches or pull requests

2 participants