Data grid control from Infragistics. Designed for WPF, can be used to produce reports, tables. Provides editing, sorting, filtering, grouping, and showing hierarchical data relationships
Questions tagged [xamdatagrid]
225 questions
10
votes
1 answer
xamDataGrid - indenting nested levels
I have a xamDataGrid with two levels of data. (see other question on SO).
There is very little visually that shows where one level of data starts and a seconds begins. Take a look at this snippet from the xamFeatureBrowser:
What I want, is to…

Vegar
- 12,828
- 16
- 85
- 151
9
votes
1 answer
Apply Style based on property value
Working with the Infragistics XamDataGrid I encountered a situation where I want a Style applied only if a certain property is set. However, I think this is more of a general WPF/style question than xamDataGrid specific.
The below style is what I…

Flack
- 5,727
- 14
- 69
- 104
7
votes
2 answers
MVVM - How to create columns at runtime for a xamdatagrid?
I have to create a XamDataGrid that shows a dynamic amount of columns for a time frame x to y. Therefore I dont know how many years a user would select to have these columns created upfront.
Now usualy within MVVM you would just populate the data…

Houman
- 64,245
- 87
- 278
- 460
6
votes
2 answers
WPF XamDataGrid doesn't update until leaving current cell
I have SEVERAL XamDataGrids in my application, and I want all of them to enable the respective Save buttons as soon as the user changes a checkbox in them. This currently doesn't happen until I leave the cell or press enter etc, because the cell is…

Theodosius Von Richthofen
- 2,441
- 1
- 21
- 46
5
votes
2 answers
XamDataGrid Column position index: Field.Index or Field.ActualPosition.Column
Let's imagine that grid already bound to a data rows and has multiple columns.
I found that I can retrieve a given column position index by:
var fieldsLayout = grid.FieldLayouts[0];
var columnField = fieldsLayout.Fields.Single(f => f.Name == "Column…

sll
- 61,540
- 22
- 104
- 156
5
votes
6 answers
True MVVM and third party controls
In a True MVVM model we do not expect any code behind in xaml.cs also we do not expect viewModel to have refernece of view.
However all third party controls do not provide good support for True MVVM.
In my case I am using Infragistics xamDatagrid…

Pradeep
- 484
- 5
- 13
5
votes
4 answers
Using MVVM, how to pass SelectedItems of a XamDataGrid as parameter to the Command raised by the ContextMenu?
I'm trying to pass the item on XamDataGrid on which I do a mouse right click to open a ContextMenu, which raises a Command in my ViewModel. Somehow the method that the Command calls is not reachable in debug mode.
This is the snipped from the…

user290669
- 51
- 1
- 1
- 2
5
votes
1 answer
XamDataGrid column visibilty is not working using MVVM
I'm trying to implement XamDataGrid column visibilty in a MVVM architecture and it does not seems to be working.
I'm doing the following:
Adding Visiblility property for an unbound field -

Anshuman
- 577
- 1
- 8
- 23
4
votes
3 answers
How to get a WPF command to execute on row double click of the Infragistics WPF datagrid?
I have a WPF XamDataGrid (I'm using the MVVM pattern, xaml below) and I need it to show the record details in another window when the user double clicks on a row. I have the command which gets the job done, but I don't know how to fire it up as I do…

Carlos H
- 694
- 1
- 7
- 16
4
votes
4 answers
Infragistics XamDataGrid AllowEdit property binding not working
In my XAML I'm trying to bind AllowEdit of my XamDataGrid to a property
But it doesn't work. All other bindings…

Student
- 317
- 1
- 8
- 16
4
votes
2 answers
Cause xamDataGrid to repaint
I need a way for viewmodel to instruct XamDataGrid on the view to just reread and repaint its cells with minimal hassle. I do not wish to mess with the source and do some unsustainable workaround with raising its events (the source might change).…

mmix
- 6,057
- 3
- 39
- 65
3
votes
4 answers
How to implement a search that causes multi-column record filtering in XamDataGrid?
I am trying to implement a search (Ctrl+F) feature on a XamDataGrid. How can I programmatically invoke record filtering on the grid that searches across content in multiple columns and displays only columns that match the search?

Kevin
- 4,567
- 1
- 28
- 36
3
votes
1 answer
WPF Infragistics xamDataGrid - CollectionView GroupDescriptions not recognized like with WPF DataGrid
We're looking at upgrading our WPF DataGrid based application to one that uses the Infragistics xamDataGrid DataGrid control.
One of the nice things about the WPF DataGrid was that it looked at GroupDescriptions specified on the CollectionView that…

Gaurav Sharma
- 2,680
- 3
- 26
- 36
3
votes
3 answers
xamDataGrid filter record styling
I'm trying to change the background color of the filter record in a xamDataGrid.
I've tried as suggested on the Infragistics forums, and