Browse by Tags
All Tags » AutoFilterControl (RSS)
-
Is there a way to maintain the Autofilter settings when the datacontext of a grid is updated or refreshed?
Also is there any plans to include the filter settings in the SaveUserSettings method?
-
We are planning to buy use XCeed Datagrid for WPF in our new project. I'm not sure whether using XCeed Data grid, is there a possibility to have custom auto filter as what we have in Microsoft Excel?
Thanks in advance,
Beryl Wilson
-
Hi,
I added a button in the AutoFilterControl to enable the user selecting all the distinct values.
Code sample:
System.Collections.IList distinctValues = view.DistinctValues[sColumnFieldName];
foreach (object value in distinctValues)
{
view.AutoFilterValues[sColumnFieldName].Add(value);
}
The problem is that if i have a long list ...
-
Hi,
How can i make the FilterToggleButton Visibility to be visible all the time (not only triggered by IsMouseOver)
-
I want to add a button to the autofiltercontrol to select all the values. Is this possible?
Thanks
-
For anyone looking to do this, I have figured out a (admittedly very hacky) way to do this. In your ControlTemplate for your AutoFilterControlStyle, place a hidden ListBox with the name ''PART_DistinctValuesHost''. Also place an instance of your custom AutoFilterControl, like so:
<ControlTemplate TargetType=''{x:Type ...
-
Hi, In the Xceed grid after the ItemsSource is DataRowViewCollection, the default filter for the string datatype is using the ''Contains'' filter type but if i want the filter type to be of the ''like'' for the string datatype then how can i do it?Is there any way to achieve the same?For exa: M having the field name as ...
-
I'd like to implement my own (rather complex) autofilter control. I looked at the doc page for custom autofilter controls, but the functionality seems fairly limited. For instance, I'd like to add a pair of datepickers so that users can select date ranges from DateTime columns without needing to go through and check every date in their desired ...
-
Hi,
I use the AutoFilterControl to filter my rows, but I can't use it to retain only row with null or empty value. Excel, for example, use (empty) value for empty cell in its auto filter control.
What can I do ?
Thanks
-
You could override the AutoFilterControl control template.
..
xmlns:local=''clr-namespace:Xceed.Wpf.DataGrid''
..
<!--************************** * TEMPLATE: AutoFilterControl ************************** --> <ControlTemplate ...
|
|
|
|