Browse by Tags
All Tags » Auto-filtering (RSS)
Showing page 1 of 3 (22 total posts)
-
I am using LinqToSql and SqlCE. When I do a autofilter in the Grid I get the exception below. If I use the 3.5.9616.13400 version of the gridI do not get a error. Is this a known issue? I filled out a Support Form with repro code.
System.NullReferenceException was unhandled Message=''Object reference not ...
-
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 all.
I have a datagrid showing data from an ODE DataTable, and I have autofiltering enabled. Very cool. But I would like the autofilter drop-down lists to include ''null'' as one of the distinct values available for filtering. How can I achieve this?
-
Hi,
How can i make the FilterToggleButton Visibility to be visible all the time (not only triggered by IsMouseOver)
-
Is there a way to apply filter values in a batch, rather than adding each value to the DataGridCollectionView's AutoFilterValues collection, one by one?
-
Hi Support,I am new to Xceed DataGridControl, however I am too much fascinated with the UI and features of this control.I am using “ObservableCollection --> DataGridCollectionView --> DataGridControl” squad. I have a requirement where the grid should filter the records according to filter criterion selected by user. It is really cool to see ...
-
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 ...
-
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 ...
-
I'm using the Autofilter functionality to load a saved filter on application load. However, when I try to apply the filter, the grid's ItemsSource is null, so of course the filter doesn't get applied to the data. Is there an event I can hook into after the data has been loaded?
-
I'd like to give our users the ability to save and apply auto-filter selections but I can't find any way to get at the filter settings in the API. Any tips on this?
Thanks!
1
|
|
|
|