grid xceed
hi ,How to combine dataTemplate in to style ? <Setter Property="Theme"> <Setter.Value> <xcdg:WMP11Theme/> </Setter.Value> </Setter> (datatemplate?????) </Style> I can't put datatemplate in to style , what am i doning? ...
hi ,How to combine dataTemplate in to style ? <Setter Property="Theme"> <Setter.Value> <xcdg:WMP11Theme/> </Setter.Value> </Setter> (datatemplate?????) </Style> I can't put datatemplate in to style , what am i doning? ...
I am changing the background color of the cells when the user has made an edit. I would like to return all cells to normal colors when the changes are saved (or reverted). It's easy enough to set the cell's original background color (as stored in the parent row). But I can't figure out how to loop through all the cells in the table to r...
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...
I have developed a simple DB-editing app using Xceed's excellent DataGrid for WPF (UX Edition version 3.7), which is now ready for deployment... except that when I run it on a machine other than the development one where it was built, I am getting the runtime exception for invalid licensing. I have included my license key in the App.xam...
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? ...
So in the Xceed documentation there is a code example that does not work for me. It may be because my grid is bound to a DataGridCollectionView. The objects in the collection used by the datagridcollection are what implement IDataErrorInfo. The errors are showing up just fine. The problem is that they are using the default orange bac...
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...
Is there a way to add a DoubleClickEvent to each Row in xaml rather than using the event of the datagridcontrol? Something like this (this code does not work): <UserControl xmlns:i="clr-namespace:System.Windows.Interactivity;assembly=System.Windows.Interactivity" xmlns:cmd="clr-namespace:GalaSoft.MvvmLight.Command;a...
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 ...
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...
Is there any way to make FilterCell case-insensitive for 'XCeed DataGrid for WPF v4.0'? Any pointers will be helpful. ...
Hi, I have been implementing the drag and drop on the xceed grid. Code is below: private void Grid_MouseMove(object sender, MouseEventArgs e) { Xceed.Wpf.DataGrid.DataGridControl grid = sender as Xceed.Wpf.DataGrid.DataGridControl; object target = GetItemAtLocation(sender, e.GetPosition(...