Browse by Tags
All Tags » Auto-filtering (RSS)
Showing page 1 of 3 (26 total posts)
-
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?
Dave
-
The autofilter control currently has a Clear button, and a checklist box, allowing one to check multiple values for filtering in a column. 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. Examples would be ...
-
My users would like the background of the column header to change when an autofilter is applied. I presume I need to do something similar to the following: <Style TargetType=''{x:Type xcdg:ColumnManagerCell}''> ...
-
Hi. Is there an example available that shows how to implement filtering on a column that allows multiple values (is bound to a Collection)?
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.
I would like to get the filter row to work with ...
-
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 ...
1
|
|
|
|