<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://xceed.com/CS/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Search results matching tag 'Auto-filtering'</title><link>http://xceed.com/CS/search/SearchResults.aspx?o=DateDescending&amp;tag=Auto-filtering&amp;orTags=0</link><description>Search results matching tag 'Auto-filtering'</description><dc:language>en-US</dc:language><generator>CommunityServer 2.1 SP2 (Debug Build: 61120.2)</generator><item><title>AutoFilter popup width</title><link>http://xceed.com/CS/forums/post/32986.aspx</link><pubDate>Thu, 20 Dec 2012 16:37:09 GMT</pubDate><guid isPermaLink="false">14592c03-f9d0-4f6b-b4cd-71e0e1b1f679:32986</guid><dc:creator>David</dc:creator><description>&lt;p&gt;I've enabled autofilter popups on my grid, which works well. However on one of the columns the text is too wide for the popup. How do I resize the popup to fit the text or enable a horizontal scroll bar?&lt;/p&gt;&lt;p&gt;Dave&amp;nbsp;&lt;/p&gt;</description></item><item><title>Autofilter with additional rules</title><link>http://xceed.com/CS/forums/post/32544.aspx</link><pubDate>Thu, 09 Aug 2012 16:50:16 GMT</pubDate><guid isPermaLink="false">14592c03-f9d0-4f6b-b4cd-71e0e1b1f679:32544</guid><dc:creator>Chris</dc:creator><description>&lt;p&gt;The autofilter control currently has a Clear button, and a checklist box, allowing one to check multiple values for filtering in a column. &amp;nbsp;I'd like to add a 'Custom Filter Rules' entry to this control, which brings up a dialog that I would make, allowing the user to define one or more advanced filtering rules. &amp;nbsp;Examples would be "Column Value [dropdown selection of: contains text/starts with/ends with/is greater than/etc] [user entered value]".&lt;/p&gt;&lt;p&gt;&amp;nbsp;1. How would I add these custom rules to the Datagrid's filtering engine?&lt;/p&gt;&lt;p&gt;&amp;nbsp;2. How would I update the autofilter control to add an item that would bring up this dialog?&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description></item><item><title>Set Background on xcdg:ColumnManagerCell when AutoFilter is applied</title><link>http://xceed.com/CS/forums/post/32197.aspx</link><pubDate>Fri, 01 Jun 2012 06:51:03 GMT</pubDate><guid isPermaLink="false">14592c03-f9d0-4f6b-b4cd-71e0e1b1f679:32197</guid><dc:creator>Jason</dc:creator><description>&lt;p&gt;My users would like the background of the column header to change when an autofilter is applied. &amp;nbsp;I presume I need to do something similar to the following:&lt;/p&gt;&lt;span style="font-family:Verdana, Arial, Helvetica;font-size:11px;line-height:13px;text-align:left;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Style TargetType="{x:Type xcdg:ColumnManagerCell}"&amp;gt;&lt;/span&gt;&lt;br style="font-family:Verdana, Arial, Helvetica;font-size:11px;line-height:13px;text-align:left;"&gt;&lt;span style="font-family:Verdana, Arial, Helvetica;font-size:11px;line-height:13px;text-align:left;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Style.Triggers&amp;gt;&lt;/span&gt;&lt;br style="font-family:Verdana, Arial, Helvetica;font-size:11px;line-height:13px;text-align:left;"&gt;&lt;span style="font-family:Verdana, Arial, Helvetica;font-size:11px;line-height:13px;text-align:left;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Trigger Property="????" Value="????"&amp;gt;&lt;/span&gt;&lt;br style="font-family:Verdana, Arial, Helvetica;font-size:11px;line-height:13px;text-align:left;"&gt;&lt;span style="font-family:Verdana, Arial, Helvetica;font-size:11px;line-height:13px;text-align:left;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Setter Property="Background" Value="{StaticResource HeaderBrushFiltered}"/&amp;gt;&lt;/span&gt;&lt;br style="font-family:Verdana, Arial, Helvetica;font-size:11px;line-height:13px;text-align:left;"&gt;&lt;span style="font-family:Verdana, Arial, Helvetica;font-size:11px;line-height:13px;text-align:left;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/Trigger&amp;gt;&lt;/span&gt;&lt;br style="font-family:Verdana, Arial, Helvetica;font-size:11px;line-height:13px;text-align:left;"&gt;&lt;span style="font-family:Verdana, Arial, Helvetica;font-size:11px;line-height:13px;text-align:left;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/Style.Triggers&amp;gt;&lt;br&gt;&lt;/span&gt;&lt;span style="font-family:Verdana, Arial, Helvetica;font-size:11px;line-height:13px;text-align:left;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/Style&amp;gt;&lt;/span&gt;&lt;span style="font-family:Verdana, Arial, Helvetica;font-size:11px;line-height:13px;text-align:left;"&gt;&amp;nbsp;&lt;/span&gt;&amp;nbsp;&lt;p&gt;I can't figure what to put in the trigger property. &amp;nbsp;I imagine I could use something like AutoFilterValues.Count = 0. &amp;nbsp;How do I link the ColumnManagerCell to the AutoFilter for the column?&amp;nbsp;&lt;/p&gt;</description></item><item><title>How to filter a multi-valued column?</title><link>http://xceed.com/CS/forums/post/31816.aspx</link><pubDate>Thu, 08 Mar 2012 10:45:25 GMT</pubDate><guid isPermaLink="false">14592c03-f9d0-4f6b-b4cd-71e0e1b1f679:31816</guid><dc:creator>thomas</dc:creator><description>&lt;p&gt;Hi. Is there an example available that shows how to implement filtering on a column that allows multiple values (is bound to a Collection)?&lt;/p&gt;&lt;p&gt;Say I have a grid that shows events, where each event can have multiple speakers. A column titled "Speaker" would be rendered as a ListBox, per each row. &lt;/p&gt;&lt;p&gt;I would like to get the filter row to work with the multi-valued speaker column, so a user can enter "Scott" and see only the rows where Scott is a speaker. And/or get the Excel-like filtering to work with the column as well (the drop-down filtering option).&lt;/p&gt;&lt;p&gt;All the examples I have found so far have been with single-valued columns.&amp;nbsp;&lt;/p&gt;</description></item><item><title>Autofilter with LinqToSql and SqlCE</title><link>http://xceed.com/CS/forums/post/26403.aspx</link><pubDate>Mon, 05 Apr 2010 23:02:58 GMT</pubDate><guid isPermaLink="false">14592c03-f9d0-4f6b-b4cd-71e0e1b1f679:26403</guid><dc:creator>Mike</dc:creator><description>&lt;P&gt;I am using LinqToSql and SqlCE.&amp;nbsp; When I do a autofilter in the Grid I &lt;BR&gt;get the exception below.&amp;nbsp; If I use the 3.5.9616.13400 version of&amp;nbsp;the grid&lt;BR&gt;I do not get a error.&amp;nbsp; Is this a known issue?&amp;nbsp; I filled&amp;nbsp;out a Support Form with repro code.&lt;/P&gt;
&lt;P&gt;&lt;BR&gt;System.NullReferenceException was unhandled&lt;BR&gt;&amp;nbsp; Message="Object reference not set to an instance of an object."&lt;BR&gt;&amp;nbsp; Source="Xceed.Wpf.DataGrid"&lt;BR&gt;&amp;nbsp; StackTrace:&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; at Xceed.Wpf.DataGrid.FilterCell.UpdateFilterExpressionFromCriterion()&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; at Xceed.Wpf.DataGrid.FilterCell.DataGridItemProperty_FilterCriterionChanged(Object sender, EventArgs e)&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; at System.EventHandler.Invoke(Object sender, EventArgs e)&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; at Xceed.Wpf.DataGrid.DataGridItemPropertyBase.RaiseFilterCriterionChanged()&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; at Xceed.Wpf.DataGrid.DataGridItemPropertyBase.set_FilterCriterion(FilterCriterion value)&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; at Xceed.Wpf.DataGrid.FilterCell.OnFilterExpressionChanged(DependencyObject sender, DependencyPropertyChangedEventArgs e)&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; at System.Windows.DependencyObject.OnPropertyChanged(DependencyPropertyChangedEventArgs e)&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; at System.Windows.FrameworkElement.OnPropertyChanged(DependencyPropertyChangedEventArgs e)&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; at System.Windows.DependencyObject.NotifyPropertyChange(DependencyPropertyChangedEventArgs args)&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; at System.Windows.DependencyObject.UpdateEffectiveValue(EntryIndex entryIndex, DependencyProperty dp, PropertyMetadata metadata, EffectiveValueEntry oldEntry, EffectiveValueEntry&amp;amp; newEntry, Boolean coerceWithDeferredReference, OperationType operationType)&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; at System.Windows.DependencyObject.SetValueCommon(DependencyProperty dp, Object value, PropertyMetadata metadata, Boolean coerceWithDeferredReference, OperationType operationType, Boolean isInternal)&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; at System.Windows.DependencyObject.SetValue(DependencyProperty dp, Object value)&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; at MS.Internal.Data.PropertyPathWorker.SetValue(Object item, Object value)&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; at MS.Internal.Data.ClrBindingWorker.UpdateValue(Object value)&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; at System.Windows.Data.BindingExpression.UpdateSource(Object value)&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; at System.Windows.Data.BindingExpressionBase.UpdateValue()&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; at System.Windows.Data.BindingExpression.Update(Boolean synchronous)&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; at System.Windows.Data.BindingExpression.UpdateSource()&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; at Xceed.Wpf.DataGrid.FilterCell.UpdateSource()&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; at Xceed.Wpf.DataGrid.FilterCell.OnApplyFilterExecuted(Object sender, ExecutedRoutedEventArgs e)&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; at System.Windows.Input.CommandBinding.OnExecuted(Object sender, ExecutedRoutedEventArgs e)&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; at System.Windows.Input.CommandManager.ExecuteCommandBinding(Object sender, ExecutedRoutedEventArgs e, CommandBinding commandBinding)&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; at System.Windows.Input.CommandManager.FindCommandBinding(CommandBindingCollection commandBindings, Object sender, RoutedEventArgs e, ICommand command, Boolean execute)&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; at System.Windows.Input.CommandManager.FindCommandBinding(Object sender, RoutedEventArgs e, ICommand command, Boolean execute)&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; at System.Windows.Input.CommandManager.OnExecuted(Object sender, ExecutedRoutedEventArgs e)&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; at System.Windows.UIElement.OnExecutedThunk(Object sender, ExecutedRoutedEventArgs e)&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; at System.Windows.Input.ExecutedRoutedEventArgs.InvokeEventHandler(Delegate genericHandler, Object target)&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; at System.Windows.RoutedEventArgs.InvokeHandler(Delegate handler, Object target)&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; at System.Windows.RoutedEventHandlerInfo.InvokeHandler(Object target, RoutedEventArgs routedEventArgs)&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; at System.Windows.EventRoute.InvokeHandlersImpl(Object source, RoutedEventArgs args, Boolean reRaised)&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; at System.Windows.UIElement.RaiseEventImpl(DependencyObject sender, RoutedEventArgs args)&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; at System.Windows.UIElement.RaiseEvent(RoutedEventArgs args, Boolean trusted)&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; at System.Windows.Input.RoutedCommand.ExecuteImpl(Object parameter, IInputElement target, Boolean userInitiated)&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; at System.Windows.Input.RoutedCommand.ExecuteCore(Object parameter, IInputElement target, Boolean userInitiated)&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; at System.Windows.Input.CommandManager.TranslateInput(IInputElement targetElement, InputEventArgs inputEventArgs)&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; at System.Windows.UIElement.OnKeyDownThunk(Object sender, KeyEventArgs e)&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; at System.Windows.Input.KeyEventArgs.InvokeEventHandler(Delegate genericHandler, Object genericTarget)&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; at System.Windows.RoutedEventArgs.InvokeHandler(Delegate handler, Object target)&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; at System.Windows.RoutedEventHandlerInfo.InvokeHandler(Object target, RoutedEventArgs routedEventArgs)&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; at System.Windows.EventRoute.InvokeHandlersImpl(Object source, RoutedEventArgs args, Boolean reRaised)&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; at System.Windows.UIElement.RaiseEventImpl(DependencyObject sender, RoutedEventArgs args)&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; at System.Windows.UIElement.RaiseEvent(RoutedEventArgs args, Boolean trusted)&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; at System.Windows.Input.InputManager.ProcessStagingArea()&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; at System.Windows.Input.InputManager.ProcessInput(InputEventArgs input)&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; at System.Windows.Input.InputProviderSite.ReportInput(InputReport inputReport)&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; at System.Windows.Interop.HwndKeyboardInputProvider.ReportInput(IntPtr hwnd, InputMode mode, Int32 timestamp, RawKeyboardActions actions, Int32 scanCode, Boolean isExtendedKey, Boolean isSystemKey, Int32 virtualKey)&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; at System.Windows.Interop.HwndKeyboardInputProvider.ProcessKeyAction(MSG&amp;amp; msg, Boolean&amp;amp; handled)&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; at System.Windows.Interop.HwndSource.CriticalTranslateAccelerator(MSG&amp;amp; msg, ModifierKeys modifiers)&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; at System.Windows.Interop.HwndSource.OnPreprocessMessage(Object param)&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; at System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Boolean isSingleParameter)&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; at System.Windows.Threading.ExceptionWrapper.TryCatchWhen(Object source, Delegate callback, Object args, Boolean isSingleParameter, Delegate catchHandler)&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; at System.Windows.Threading.Dispatcher.WrappedInvoke(Delegate callback, Object args, Boolean isSingleParameter, Delegate catchHandler)&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; at System.Windows.Threading.Dispatcher.InvokeImpl(DispatcherPriority priority, TimeSpan timeout, Delegate method, Object args, Boolean isSingleParameter)&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; at System.Windows.Threading.Dispatcher.Invoke(DispatcherPriority priority, Delegate method, Object arg)&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; at System.Windows.Interop.HwndSource.OnPreprocessMessageThunk(MSG&amp;amp; msg, Boolean&amp;amp; handled)&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; at System.Windows.Interop.HwndSource.WeakEventPreprocessMessage.OnPreprocessMessage(MSG&amp;amp; msg, Boolean&amp;amp; handled)&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; at System.Windows.Interop.ComponentDispatcherThread.RaiseThreadMessage(MSG&amp;amp; msg)&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; at System.Windows.Threading.Dispatcher.PushFrameImpl(DispatcherFrame frame)&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; at System.Windows.Threading.Dispatcher.PushFrame(DispatcherFrame frame)&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; at System.Windows.Threading.Dispatcher.Run()&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; at System.Windows.Application.RunDispatcher(Object ignore)&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; at System.Windows.Application.RunInternal(Window window)&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; at System.Windows.Application.Run(Window window)&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; at System.Windows.Application.Run()&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; at XceedFilterRepo.App.Main() in C:\Users\mikebu\Documents\Visual Studio 2008\Projects\XceedFilterRepo\obj\Debug\App.g.cs:line 0&lt;BR&gt;&amp;nbsp; InnerException: &lt;BR&gt;&lt;/P&gt;</description></item><item><title>Add All DistinctValues To AutoFilterValues</title><link>http://xceed.com/CS/forums/post/26107.aspx</link><pubDate>Tue, 16 Mar 2010 11:08:38 GMT</pubDate><guid isPermaLink="false">14592c03-f9d0-4f6b-b4cd-71e0e1b1f679:26107</guid><dc:creator>Yaniv</dc:creator><description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I added a button in the AutoFilterControl to enable the user selecting all the distinct values.&lt;/P&gt;
&lt;P&gt;Code sample:&lt;/P&gt;&lt;FONT size=2&gt;
&lt;P&gt;System.Collections.&lt;/FONT&gt;&lt;FONT color=#2b91af size=2&gt;IList&lt;/FONT&gt;&lt;FONT size=2&gt; distinctValues = view.DistinctValues[sColumnFieldName];&lt;/FONT&gt;&lt;/P&gt;&lt;FONT size=2&gt;&lt;FONT color=#0000ff size=2&gt;
&lt;P&gt;foreach&lt;/FONT&gt;&lt;FONT size=2&gt; (&lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;object&lt;/FONT&gt;&lt;FONT size=2&gt; value &lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;in&lt;/FONT&gt;&lt;FONT size=2&gt; distinctValues)&lt;/P&gt;
&lt;P&gt;{&lt;/P&gt;
&lt;P&gt;view.AutoFilterValues[sColumnFieldName].Add(value);&lt;/P&gt;
&lt;P&gt;}&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The problem is that if i have a long list of distinct values that process takes a lot of time ...&lt;/P&gt;
&lt;P&gt;My&amp;nbsp;question : is&amp;nbsp;there a way to add a &lt;STRONG&gt;range&lt;/STRONG&gt; of values to the AutoFilterValues collection (i can see that it is xceed custom collection)&lt;/P&gt;&lt;/FONT&gt;&lt;/FONT&gt;</description></item><item><title>Null values in autofilters</title><link>http://xceed.com/CS/forums/post/25704.aspx</link><pubDate>Tue, 09 Feb 2010 00:52:07 GMT</pubDate><guid isPermaLink="false">14592c03-f9d0-4f6b-b4cd-71e0e1b1f679:25704</guid><dc:creator>Tony</dc:creator><description>&lt;p&gt;Hi all.&lt;/p&gt;&lt;p&gt;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?&lt;/p&gt;</description></item><item><title>AutoFilter  FilterToggleButton Visibility</title><link>http://xceed.com/CS/forums/post/25595.aspx</link><pubDate>Mon, 01 Feb 2010 08:29:21 GMT</pubDate><guid isPermaLink="false">14592c03-f9d0-4f6b-b4cd-71e0e1b1f679:25595</guid><dc:creator>Yaniv</dc:creator><description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;How can i make the FilterToggleButton Visibility to be visible all the time (not only triggered by IsMouseOver)&lt;/P&gt;</description></item><item><title>Batch autofiltering</title><link>http://xceed.com/CS/forums/post/25410.aspx</link><pubDate>Wed, 13 Jan 2010 19:24:02 GMT</pubDate><guid isPermaLink="false">14592c03-f9d0-4f6b-b4cd-71e0e1b1f679:25410</guid><dc:creator>Turner</dc:creator><description>&lt;p&gt;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?&lt;/p&gt;</description></item><item><title>Excluding some specific Row(s) from automatic filtering.</title><link>http://xceed.com/CS/forums/post/24068.aspx</link><pubDate>Tue, 22 Sep 2009 08:58:22 GMT</pubDate><guid isPermaLink="false">14592c03-f9d0-4f6b-b4cd-71e0e1b1f679:24068</guid><dc:creator>Aashay</dc:creator><description>&lt;span style="font-family:Wingdings;"&gt;&lt;span&gt;Hi Support,&lt;br&gt;&lt;br&gt;I am new to Xceed DataGridControl, however I am too much fascinated with the UI and features of this control.&lt;br&gt;&lt;br&gt;I am using “ObservableCollection --&amp;gt; DataGridCollectionView --&amp;gt; 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 the Excel like filtering in the XceedGrid using:&lt;br&gt;&lt;br&gt;myDataGridCollectionView.AutoFilterMode = AutoFilterMode.And;&lt;br&gt;&lt;br&gt;However at the same time I need to exclude some records from being filtered out, that is, they are required to be present all the time irrespective of the filters applied by user.&lt;br&gt;&lt;br&gt;Is there any direct or indirect way to achieve this? If required for this particular problem, I can even group the records within two groups, i.e. filterable /non-filterable.&lt;br&gt;&lt;br&gt;Waiting for the words of support&lt;img src="http://xceed.com/CS/emoticons/emotion-1.gif" alt="Smile" /&gt;&lt;/span&gt;&lt;/span&gt;</description></item></channel></rss>