The icollectionview tag has no wiki summary.
6
votes
1answer
613 views
Why sorting using CollectionViewSource.SortDescriptions is slow?
This is the default sort method when you click on a column header in a DataGrid. When the underlying list contains 100,000 items, it takes about 20 seconds to refresh the view. Same delay can be ...
4
votes
1answer
465 views
Fast performing and thread safe observable collection
Observable collections raise notifications for each action performed on them. Firstly they dont have bulk add or remove calls, secondly they are not thread safe.
Doesnt this make them slower? Cant we ...
3
votes
1answer
250 views
What is the type of object added by IEditableCollectionView?
Adding objects with the IEditableCollectionView addNew() method is pretty decent. However I'm not sure how well it works with my generic code I have.
I have a ObservableCollection of my base class. ...
2
votes
2answers
251 views
Arrow keys don't work after programmatically setting ListView.SelectedItem
I have a WPF ListView control, ItemsSource is set to an ICollectionView created this way:
var collectionView =
System.Windows.Data.CollectionViewSource.GetDefaultView(observableCollection);
...
2
votes
0answers
345 views
Convert ICollectionView to List<T>
I am binding property type of ICollectionView on DataGrid controls in WPF, .NET 4.0.
I use Filter on ICollectionView.
public ICollectionView CallsView
{
get
{
...
2
votes
3answers
220 views
wpf datagrid icollectionview sorting BUG?
maybe someone can help me? I have the following scenario:
A simple view:
<Window x:Class="DataGridSortBug.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
...
2
votes
1answer
171 views
Finding all the ICollectionView's attached to a collection
We have multiple filters based on the same collection. i.e. we are displaying the same collection in a variety of ways. What i would like to be able to do is ask all of the CollectionViews to refresh ...
1
vote
1answer
78 views
Filtering two ICollectionView from a single ObservableCollection
I have a problem using two ICollectionView instances that have the same ObservableCollection as source.
When I filter an ICollectionView, it seems that also the other ICollectionView is filtered with ...
1
vote
1answer
84 views
ICollectionView.Refresh doesn't refilter the collection
I have 3 cascading ICollectionViews in my view model where one relies on the other.
The first one, isn't bound to a control on the view but is rather used as a key-filter for the two upcoming ones ...
1
vote
1answer
166 views
ComboBox bound to ICollectionView is displaying incorrect SelectedItem
I'm having an issue with a pair of combo box's in Silverlight 4.0.
The intention is to have two different comboboxes that read from the same list, but if any item selected in one won't show up in the ...
1
vote
3answers
761 views
how to sort ObservableCollection
I have a an ObservableCollection and a WPF UserControl is Databound to it. The Control is a graph that shows a vertical bar for each item of type BarData in the ObservableCollection.
...
1
vote
1answer
104 views
Why is BindingListCollectionView sealed? [closed]
I have an extension to the ICollectionView interface that allows me to handle multi-selection (IMultiSelectCollectionView). I want to provide an implementation that is compatible with ...
1
vote
2answers
273 views
Removing item from ICollectionView
How can I remove item from ICollectionView in c#?
Dictionary<int, String> entityDict;
public ICollectionView DictView { get; set; }
dictView = ...
1
vote
1answer
398 views
CollectionView.DeferRefresh() throws exception
There are cases when you have many UI updates due a massive amount of INotifyChangedProperties events. In that case you might want to signal the changes to UI only once when all the properties are set ...
1
vote
1answer
576 views
WPF: ICollectionView - Filter one list if item is contained in another list?
Basically, I have 2 ListView's each binding to a different ItemsSource.
List 1 can not be changed (it's a ReadOnlyObservableCollection).
List 2 can be changed (through user interaction).
I need to ...
1
vote
1answer
738 views
Update item in BindableCollection with notify ICollectionView
Hi I bind collection from Caliburn Micro on ListBox control in view. Here is it.
public BindableCollection<UserInfo> Friends
{
get { return _friends; }
set
{
_friends = ...
1
vote
1answer
833 views
Can't add new item to Silverlight DataForm when ICollectionView is sorted or filtered
I've got a DataForm on a Silverlight 4 page. I bind it to the View on the class below. I am able to add, delete, edit, and move forward/back through records just fine using the controls built into the ...
1
vote
2answers
607 views
ICollectionView for Silverlight and WPF
Does anyone know if there is a common object that inherits from ICollectionView in both Silverlight and WPF?
Or do I just have to create my own version?
1
vote
3answers
541 views
How to bind to CurrentItem of ICollectionView
I want to a property to the current item of a ICollectionView how can I do it? The ICollectionView is used for binding to a combo box, how can I bind another control to the ICollectionView's selected ...
1
vote
1answer
1k views
ICollectionView.SortDescriptions sort does not work if underlying DataTable has zero rows
We have a WPF app that has a DataGrid inside a ListView.
private DataTable table_;
We do a bunch or dynamic column generation ( depending on the report we are showing )
We then do the a query and ...
1
vote
1answer
341 views
Create a View of a View in WPF
OK, so I need to create an ICollectionView from an existing ICollectionView.
The idea is that I can take whatever filters/grouping/sorting has been set on the existing view and then create other views ...
1
vote
1answer
3k views
WPF ICollectionView Filtering
I've written a code for filtering items in ComboBox:
My question is, how would you do that?
I think that this solution with reflection could be very slow..
ICollectionView view = ...
0
votes
1answer
23 views
Binding a combobox to a CollectionView shows filtered out elements. Why?
Wpf binding is funny for those who know it well and it is nightmare for newbie.
If I bind a combobox to the commented out CollectionView the control shows all the elements, including those excluded by ...
0
votes
1answer
44 views
How to update UI according to ICollectionView filter results?
I have two controls - SearchFilter and SearchResult. Filter contains buttons with commands to filter results. Result control has a ListView with a binding to ICollectionView property.
<ListView ...
0
votes
0answers
68 views
Silverlight: Need to create a data grid padded with empty rows
Our requirement is to create a data grid that exhibits somewhat of an Excel behavior. It should occupy all of available vertical real estate and the available space should be filled with empty rows. ...
0
votes
0answers
88 views
Pass entity set to another form IcollectionView WPF C#
I have a WPF application and there is a datagrid in all the forms. I have a common window for filtering records in these datagrids. I am using ICollectionView for the filtering.
Currently it filters ...
0
votes
3answers
304 views
Filter a collection multiple times using ICollectionView
I'm trying to filter an ObservableCollection that is displayed in a DataGrid.
This works great the first time, but when I try to filter again, it uses the sourcecollection instead of the filtered ...
0
votes
0answers
75 views
Custom sort in domaincollectionview
I'm using a DCV as a property in the View Model.
Everything works fine but what about custom sort?
Say I have a string property in my model which should be sorted alphanumerically.
How can I achieve ...
0
votes
0answers
147 views
WPF - ICollectiView SortDescriptions — Sorting by a String but ignoring nullorwhitespace?
Basically, I have a collection of items. I want to sort on a String property. The problem is that any Empty string shows up at the top of the list when I do ascending...
ICollectionView view = ...
0
votes
1answer
332 views
WPF TreeView ICollectionView remove filter
I have a WPF TreeView which varies in depth. My application also has the ability to search inside the tree. This is accomplished by using the Filter property of the ICollectionView interface. ...
0
votes
1answer
530 views
WPF Prism 4 Unit Testing
I have been using Prism 4 to create a composite wpf application, now I want to begin to test the app. using unit testing and moq, I have worked trough the StockTrader RI sample and tried to build my ...
0
votes
1answer
340 views
WPF Binding to child of current item not updating
I am currently binding to an ObservableCollection using an ICollectionView, myCollectionView. The contents of that collection are being selected from a ComboBox. Each collection item, ...
0
votes
1answer
332 views
Initially hide elements in ListView (uses ICollectionView and ObservableCollection)
I am using a ListView which is bound to a ICollectionView (ListCollectionView -> ObservableCollection)
While loading a file containing data the collection gets filled.
Every data item has a boolean ...
0
votes
1answer
140 views
Re-establishing WPF databinding after changing property value
I'm playing with ICollectionView right now, and am encountering a problem where I think I understand the "why", but not the "how do I fix it". :)
I have a ComboBox that's databound to an ...
0
votes
1answer
491 views
ICollectionView Sorting issue in ListView
I saw ICollectionView being introduced with WPF to handle situations when you need sorting and filtering enabled. I even saw few articles which sort items, but my main concern is why my approach is ...
0
votes
1answer
2k views
WPF ObservableCollection CollectionView.CurrentChanged not firing
I have a problem with one of my ICollectionViews. The ICollectionView's CurrentChanged event is not firing.
Please see my code below.
XAML:
<!-- Publication -->
...