xceed

How do I detect row selection in the Xceed DataGrid for WPF

I'm horrible at this WPF thing, so bear with me. I'm using the Xceed DataGrid for WPF, and I need to know when someone selects a row, but I can't figure out how to do it. I'm sure I need to add some XAML to enable this, but I can't figure out what I should do. ...

How do I reject a change in an editable Xceed Wpf DataGrid cell?

I have an Xceed DataGridControl on a WPF Window with a few columns that are data bound to a DataTable. The UpdateSourceTrigger on the grid control is set to CellContentChanged so that the binding source updates as soon as a cell's content changes. <Window x:Class="Window1" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/prese...

Xceed WPF Datagrid Printing fixed column on every page

I have a grid with one fixed column and many other columns. When i do a print (datagrid.Print()) on the second page i have the columns that would not fit onto the first page but without the fixed column (which is only printed on the first). I would like to repeat the fixed column on every page i print as it is the key to the data. Is thi...

Xceed DataGrid SelectedItem issue

In my project I have an Xceed data grid which is bound to a data source with many records and record details. I am attempting to create a context menu option that will allow the user to search for a specific detail in a specific column. While I have successfully completed the functionality there is a UI part that is giving me some troubl...

Xceed DataGrid Resets ScrollBar Position

When I change the ItemsSource in the Xceed DataGridControl my vertical and horizontal scroll bars immediately get reset to the top/left. Any ideas how to prevent that from happening? ...

Taking out FilterRow from XCeed DataGrid control

Is it possible to pull out filter row from XCeed DataGrid control to some other place like group box ? If possible, how ? Any pointers will be appreciated. Please consider scenario given below where when I click on Filter button, Product Name column will be filtered according to filter query. For doing this scenario I need to take out F...

Xceed Zip for .NET Compact Framework v2.1 on CF2

I have been using Xceed Zip for .NET Compact Framework v2.1 for years with VS 2003. On Windows Mobile 6.1 devices xceed.zip gives a System.TypeLoadException. Trying the same component with VS2008 again results in the below exception. It seems as if it is trying to work with CF1 on a CF2 device. System.TypeLoadException: File or assembl...

binding XCeed Grid

Is it ok to bind ListCollectionView to Xceed datagrid DataGridCollectionViewSource... I am able bind with observablecollection but not with listcollection View bith are dependency properties...Please help me ...

FilterCell for each value in a collection

I am using XCeed DataGrid for WPF v4.0. Is it possible to add FilterCell for each value in string array present inside following class ? class DataGridRow { public int EmployeeId { get; set; } public string[] EmployeeFeatures{ get; set; } } Essentially I wish to see the FilterCell for EmployeeFeatures[0], EmployeeFeatures[1] ...Empl...

XCeed and the DataGridVirtualizingQueryableCollectionView

With a large set of tables in a SQL database, I've implemented the DataGridVirtualizingCollectionView to 'lazy load' where needed into the WPF front end using XCeeds DataGrid for WPF. This works quite well, but I notice that this class doesn't implement any kind of filtering mechanism. Looking at the documentation here it appears that t...

Case-insensitive FilterCell for "XCeed DataGrid for WPF v4.0"

Is there any way to make FilterCell case-insensitive for 'XCeed DataGrid for WPF v4.0'? Any pointers will be helpful. ...