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
0
votes
1 answer

Error in Xceed datagrid library end edit

I use Xceed dll library in my WPF c# application. Sometimes my users get an error when they reach myGrid.EndEdit(). Error is: An attempt was made to call the EndEdit method of an item that is not part of the specified context. How do I can get…
Merta
  • 965
  • 1
  • 11
  • 23
0
votes
0 answers

XCeed WPF DataGrid CollectionView edit row

I have a problem to edit a row in XCeed WPF DataGrid. When the user focused a cell, the editing symbol appears, but he can not insert anything. In XAML is this stuff
simmeone
  • 629
  • 6
  • 18
0
votes
1 answer

Binding xceed datagrid to list>

I need to create a row inside the xceed datagrid where all row fields will be created dynamically because their types, names, amount are available only in runtime. I tried ObservableCollection of object[] where object[] is an array of system…
OmegaDoom
  • 23
  • 5
0
votes
1 answer

WPF complex DataGridColumn - First Name + Last Name Sort, single cell display

Say I have the following class: public class Name { public string First {get;set;} public string Last {get;set;} public string FullName { get { return String.Format("{0} {1}", this.First, this.Last); …
turkinator
  • 905
  • 9
  • 25
0
votes
2 answers

Xceed datagrid showing combobox

I wanted to use "Xceed DataGrid for WPF" community edition to show items in WPF application that are already coming correct for a Propertygrid. The textbox (first name) is working fine, but combobox is not working. Problem is combobox is not…
0
votes
1 answer

How to add a binding to UIElement's property, without SetBinding() method?

I'm asking about Column object - DataGridControl from Xceed's WPF Extended Toolkit. I need to create a Column in code, and add a binding to its Width property. Column class doesn't expose the SetBinding() method. Although in XAML - it supports…
Alexey Titov
  • 235
  • 2
  • 9
0
votes
1 answer

Xceed DataGrid - is it possible to make a 'partial sorting'?

I have a WPF/MVVM project that uses Xceed DataGridControl. Its ItemsSource is PagedCollectionView (Silverlight code). Now I do grouping by LastName field, and get grouped data in the grid - Smith's (5 rows), Johnson's (10 rows), Williams's (15…
Alexey Titov
  • 235
  • 2
  • 9
0
votes
1 answer

Force scrolling to the last group in an xceed DataGridControl

Im having an issue caused by the virtualization of xceed grids. I have a button that expands/collapses all groupings. The problem is, it only works on what has been virtualized in the grid. I was thinking a solution would be to force a scroll…
Derek Meyer
  • 497
  • 7
  • 22
0
votes
1 answer

Disable the mouseover effect on an XCeed WinForms DataGrid?

I am using the Xceed WinForms DataGrid control but don't seem to be able to remove the mouseover row highlight effect. I have tried changing the DataGrid to readonly and changing the SelectionMode to None but it still insists on highlighting the row…
Dutts
  • 5,781
  • 3
  • 39
  • 61
0
votes
1 answer

Detect when the Filter changes in a Xceed DataGrid control for WPF

I'm currently using a Xceed DataGrid control in my C# WPF project. And I need to know when the user changes the filters on the grid so I can update my ViewModel. Is there a way to detect when the Filters on the grid have been changed?
m_collard
  • 2,008
  • 4
  • 29
  • 51
0
votes
1 answer

DataGrid Sorting By Any Column Only Sorts by First Column Criteria

I have been scratching my head at this one for quite a while. My Xceed datagrid only sorts by AcqID and nothing else, even when I select other columns that are strings, date, and numeric. See image of date sorting below. My Object is pretty…
markokstate
  • 923
  • 2
  • 14
  • 28
0
votes
0 answers

Elements of list that is bound in a ControlTemplate only rendered once

I have a control that is wrapping an Xceed DataGridControl (part of the Extended WPF Toolkit Community Edition). The control provides a simple property (without a backing dependency property) that can hold a list of buttons (field instantiated by…
Daniel Lemke
  • 1,966
  • 18
  • 24
0
votes
1 answer

Xceed Datagrid virtualizing mode issue

I have a very strange issue in wpf extended toolkit datagrid. If I use a normal binding, all OK: But in virtualizing mode text is invisible, but rows is exist.
Dinekro
  • 1
  • 1
0
votes
1 answer

How to bind Itemssource of combobox in xceed datagrid

I am trying to add a combobox to a Xceed WPF datagrid but not able to bind Itemssource to the combo box. Here is the xaml for the datagrid.
WAQ
  • 2,556
  • 6
  • 45
  • 86
0
votes
1 answer

Add EventToCommand to each Row in xaml

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):
CodeWeasel
  • 691
  • 8
  • 12