This thread looks to be a little on the old side and therefore may no longer be relevant. Please see if there is a newer thread on the subject and ensure you're using the most recent build of any software if your question regards a particular product.
This thread has been locked and is no longer accepting new posts, if you have a question regarding this topic please email us at support@mindscape.co.nz
|
My app uses a filter in the grid (for example, I want to show only those properties with a certain attribute): ICollectionView view = CollectionViewSource.GetDefaultView (myPropertyGrid.BindingView); private bool MyFilter(Node node) {//etc via reflection, return True only if node's property has certain attribute } Now if I use the Toolbar in my grid (propertyGrid.IsToolbarVisible = true), my filter goes out the window and only the filtering derived from the Toolbar's Search functionality is in play. What would seem much more natural to me (and useful) is if the Toolbar's Search functionality were applied AFTER the results of my filter, not INSTEAD OF my filter. Is this possible? Thanks, Pauk |
|
|
Hello Paul, The current implementation of the toolbar and the way that filtering works don't really allow for that (we have no way of distinguishing between a filter applied by the toolbar, which the toolbar can replace, and a user filter, with which the toolbar filter could combine). But it's a nice idea and would be good to have. I have logged a feature request for this and will look into it. |
|