hi,
I have recently begun development using c# and wpf. In our application we have a DataGrid object that we would like to bind to a list. However we do not want all entrys in the list to be bound, only those that meet a certain criteria. The reason that we cannot bind to a seperate list (ie. bind to a list created by the applying the filter) is that we would like 2 way binding, so that when a user adds a row to the table it will be added to the overall list.
Question1: is it possible to bind to a 'filtered' list Question2: if not what is the best way to get this functionality? i.e. display only certain values but add all new entries to the overall list
thanks in advance
sam