Hello, I downloaded the Infragistics Wpf DataGrid and i m trying to use the FieldLayoutSettings along with the Filter in the same. It is not allowing me to do so........ I m trying to set the same from the Designer properties of the DataGrid and it is giving error that filtering is disable in the Express Edition. So, any one can please guide me whether filter feature is only supported once we have purchase the license and is it not available in the Demo Version . Thanks, Paras Sanghani
Hi, I'm trying to use a Converter bound to a field in order to change the way data is displayed. For example if the Status value is "D", I want to translate that to something meaningful such as "Deleted" without changing any of the data in the DataSource. My code which I will paste below works fine from display point of view, however, when you click on the column filter, the list of predefined filters is based on the non-transformed data e.g. "D","A",etc... How can I tell the filter to work on the values that are visible on the screen <Style TargetType...
Hi, I'm trying to remove some of the predefined filters displayed on my DateTime column which are not applicable to my application (e.g. Next Year filter). Can you please advise on how to do that? Also is that list open for customisation (i.e. creating my own predefined filters) Thank you
I have WPF datagrid with databind to the property in the viewmodel. I am trying implement rebinding the grid when user click "refresh List" above the grid. When I repopulate the collection property in my viewmodel with the new data from database, it appears data is refreshed, but filter and sorting retained as it is. I want some help how to clear sort and filter collection in my "ViewModel" in the refreshList command handler. Thanks for the help
I have an UltraWinGrid with a filter row at the top. Some string colums have a dropdown with filters. On BeforeRowFilterDropDown I have the following code: if (typeof(string) == e.Column.DataType){ FilterCondition condition = new FilterCondition(e.Column, FilterComparisionOperator.Match, "^[A-Za-z]"); e.ValueList.ValueListItems.Insert(0, condition, "All"); } This works fine. The problem is what happens when I select the 'All' filter, and take the focus away from the filter cell after that. The cell text changes from 'All' to the FilterCondition.CompareValue,...
I have an Ultragrid with one parent band and three child bands. When, as a user, I set a filter on a child band column (via the header icon), it gets reset when the grid data is refreshed. I've tried saving and restoring to/from a memorystream using DisplayLayout.Load/Save and calling DisplayoutRefreshFilters but only the parent band filters survive the data refresh. What is the proper method to preserve and re-apply child band filters on a data refresh?
I have a double field in my data source that I have formatted as a percent by setting the Format property to P on the text editor for that cell. This works great, but the underlying value for, say 15%, is still .15. If the user wants to filter this column, I'd like for them to be able to type the percentage and not the decimal value in the filter's combo box (e.g. to find all values of 10%, they'd type 10, not .1). Is there a way to accomplish this? I've also tried using a ValueToTextConverter and a ValueToDisplayTextConverter, but the filter still operates on the underlying value...
Hi, I have come across an issue when I have an active filter in XamDataGrid. For exmaple, if I set the price to < 5 and the value in the existing rows changes to anything > 5, the rows don't drop off the grid automatically. Is this a bug ?
I am trying to achieve the same thing as the user in the original post and have found the folllowing; - Using WPF 2009.1 the filtering with combos works fine but it does not give me an accurate record count when the filters are cleared. - Using WPF 2009.1 plus the 2150 Hotfix the filterining with combos fails completely and the count of filtered records is incorrect. Also the performance of loading the initial xamDataGrid (unfiltered) and then waiting for the filtered results to be returned is very poor. - Using WPF 2009.2 produces the same issues as 2009.1 plus the 2150 hotfix. Are there breaking...
When I bind a templated column to a datetime and set allowfilterrow to top and filteringscope to columnlayout then the filter does not work for this column: When the datetime of a row equals the datetime entered in the filterrow => no rows are shown. When I click the removefilter icon, the removefilter icon stays visible. See also attached files.