Posted 15 May 2022, 3:39 pm EST
Hi Dan,
Thank you for sharing the stack trace.
This issue generally occurs when your ItemSource is read-only. Could you please make sure that the data source you are passing to C1CollectionView is not read-only?
JFYI, I didn’t get this exception while using List/ObervableCollection with C1CollectionView as follows:
flexGrid.ItemsSource = new C1CollectionView(new List<User>()
{
new User(){ Id = 1, Name = "Dan", Role = "Admin" },
new User(){ Id = 2, Name = "Joe", Role = "User" },
new User(){ Id = 3, Name = "Fred", Role = "User" }
});
In case you still face this issue then I would request you to share a small sample replicating this behavior.
Additionally, I would also request you to create a new ticket for a new issue because it will help us in managing your tickets properly.
Best Regards,
Kartik