Questions tagged [xceed-datagrid]

Xceed DataGrid for WPF is designed to extend the features of the base WPF DataGrid control. It provides the ability to create themes, dynamic grouping and other proprietary views such as 2D and 3D animated views with images. It has native support for Data Virtualization (or paging) which helps manage the loading of large data sets.

100 questions
1
vote
1 answer

Xceed datagrid - Get current data

I've got an 'XceedDataGridWrapper' in an application which is bound to some data. In the C# file behind the XAML for the file which holds my dataset I have a variable which holds a reference to the Xceed data-grid: public XceedDataGridWrapper…
AidanH
  • 502
  • 5
  • 24
1
vote
2 answers

Xceed DataGridCollectionViewSource with Sample Data Source

Using Xceed DataGrid for WPF How can you use generated sample data source (generated in Expression Blend) as the source for DataGridCollectionViewSource? Is it possible?
Hjalte Tagmose
  • 67
  • 1
  • 12
1
vote
2 answers

Xceed DataGrid for WPF: checkboxes need 3 clicks to change

I made an extremely basic DataGrid to test it out, but I immediately ran into this issue, where clicking a checkbox doesnt do anything for the first 2 clicks. It looks like it takes a click to click off whatever it was on, 1 more click to focus…
Hjalte Tagmose
  • 67
  • 1
  • 12
1
vote
1 answer

WPF, How to properly unhook handlers when watching a TypeDescriptor

I am using WPF, and attempting to follow the MVVM pattern. Our team has decided to use the Xceed DataGrid control, and I am having some difficulties getting it to fit into the MVVM pattern. One requirement that I have to meet is that I need to know…
BigFunger
  • 174
  • 1
  • 12
1
vote
1 answer

Xceed DataGrid Error

I just upgraded my project to version 3.0 of the Extended WPF Toolkit™ Community Edition and now my DataGrid shows an error at design time saying: The specified view type must derive from ViewBase. Parameter name: TargetViewType Is this a new…
Michel Feinstein
  • 13,416
  • 16
  • 91
  • 173
1
vote
1 answer

XCeed grid delete from virtualized source

I'm taking a look at XCeed's WPF data grid samples trying to figure out how to delete a row when in "virtualized data" mode. I don't understand how can a row be deleted since the underlying virtual collection does not implement any of the remove…
Sabin Neagu
  • 712
  • 7
  • 15
1
vote
1 answer

Adding a column to DataGridControl from code-behind

I am trying to create and add a column to DataGridControl (Xceed Community Edition) in run-time via code-behind. The column includes CombobBox as DataTemplate. Here is what I have now: CellEditor editor = new CellEditor(); …
v.chjen
  • 615
  • 1
  • 8
  • 20
1
vote
2 answers

How to add ComboBox column in XCeed DataGridControl (WPF)

I am trying to add a combobox column in XCeeds DataGridControl. Managed to make a CellEditor, which sets proper values to the binded field, but there are problems with the CellContent template. Xaml:
v.chjen
  • 615
  • 1
  • 8
  • 20
1
vote
1 answer

CustomUserControl Double Click Event in ControlTemplate in WPF

In WPF I created a CustomUserControl with DoubleClick event handler. I am using this control inside ControlTemplate in this way:
1
vote
0 answers

xceed datatgrid export to excel Xceed.Wpf.DataGrid.Export.ExcelExporter class is not found

I am trying to export a DataGrid's data to excel. I tried it using the xceed document (see the code below). But there, I was not able to find Xceed.Wpf.DataGrid.Export.ExcelExporter public static void…
Rashmi S
  • 267
  • 1
  • 7
  • 20
1
vote
0 answers

How to highlight a table cells when you click on another cell?

Good day! I have a grid with two logical subgrids, the first subgrid have links with second subgrid (at logical things,not wpf), but i want to get this: When i click on cell at first subgrid => then another cells(at second subgrdid) wich links of…
user2545071
  • 1,408
  • 2
  • 24
  • 46
1
vote
2 answers

How can I determine which column of which row was double clicked in an XCeed Datagrid?

I have an XCeed Datagrid that is filled from a DataTable. When the user doubleclicks a cell I want to be able to determine which column from which row was selected. How do I do that?
Dabblernl
  • 15,831
  • 18
  • 96
  • 148
1
vote
0 answers

DataGridControl.Resources DataCell EventSetter alternative

I have code in my Xceed DataGridControl Resources where i hookup on the PreviewKeyDownevent. This code works and build fine on my colleagues and my laptop. But when our deployment team tries to build this with Nant it generates following…
JMan
  • 2,611
  • 3
  • 30
  • 51
1
vote
3 answers

Loop through all cells in Xceed DataGrid for WPF?

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…
ewall
  • 27,179
  • 15
  • 70
  • 84
1
vote
1 answer

Binding Column properties of Xceed DataGrid to viewmodel property attribute

I'm binding to an Xceed DataGridControl (Community Edition) with AutoCreatedColumns ObservableCollection Items I would like to mark the created columns' ReadOnly property based on the Editable attribute on the viewmodel property. …
John Maillet
  • 680
  • 8
  • 23