Tagged Questions
The xamdatagrid tag has no wiki summary.
3
votes
5answers
569 views
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.
...
2
votes
3answers
210 views
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 ...
2
votes
1answer
440 views
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 ...
2
votes
1answer
931 views
XamDataGrid: I have two columns (displaying decimal data): I want one with a “$” sign, and one without. How?
I have two decimal datatype columns; I want them displayed like so:
Column 1 (ColumnWithNoDollarSign) will have no "$" sign in front of the values
Column 2 (ColumnWithDollarSign) will have a "$" ...
2
votes
1answer
123 views
How can I restore the changed value of an ObservableCollection?
I have an ObservableCollection<T> of a class.
class person
{
string name;
string age;
}
I also have one List<T>. I'm getting data from XML tags populating in the collection as ...
2
votes
2answers
2k views
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 ...
2
votes
0answers
414 views
Expanding child records above, rather than below, the parent in a TreeView or grouped XamDataGrid
I have an Infragistics XamDataGrid showing records grouped by department. When I click on an expansion indicator next to a department name, the grid shows me all records with that department as a ...
1
vote
1answer
81 views
Triggering a command in the view model based on an action in the view
I am working with the Infragistics XamDatagrid. When an event takes place in the view (new record updated), I would like to call a method in the view model. I can't just listen to the ...
1
vote
1answer
160 views
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 ...
1
vote
1answer
495 views
xamDataGrid filter record styling
I'm trying to change the background color of the filter record in a xamDataGrid.
I've tried <SolidColorBrush x:Key="{ComponentResourceKey {x:Type igDP:XamDataGrid}, AddRowBackground}" ...
1
vote
1answer
259 views
How can we capture notifications of row deletion in xamDataGrid?
We have a Infragistics xamDataGrid with the DataSource bound to a BindingList. We have some custom text set on the group by header and need to reset it every time an item is added or deleted.
Is ...
1
vote
1answer
358 views
WPF XamDataGrid: What events fire when a user has moved or resized a column
WPF XamDataGrid: What events fire when a user has moved or resized a column?
I would like to know if the user has done either of these things so that I can save details of the column positions and ...
1
vote
0answers
253 views
What is causing the error 'Must specifiy both property and value for setter'?
I have a style which toggles the visibility of an image depending on an underlying DataContext property. Unfortunately I keep getting an error:
'Must specify both property and value for setter'
The ...
0
votes
0answers
13 views
Infragistics XamDataGrid AllowEdit property binding not working
In my XAML I'm trying to bind AllowEdit of my XamDataGrid to a property
<igDP:XamDataGrid.FieldSettings>
<igDP:FieldSettings AllowEdit="{Binding Path=DataItem.Approved}"/>
...
0
votes
0answers
73 views
How to bind BindingList<T> to DataItem in Infragistics Xamdatagrid?
I have binded a Field to BindingList Collection. And that BindingList Collection data is converted using IValueConverter and getting displayed in xamdatagrid. The problem is when I add or delete data ...
0
votes
1answer
67 views
How to use a multi value converter for a field in xamdatagrid?
I want to convert a list to comma separated string. For that purpose I am using multivalue converter.
But I dont know how to bind it to a field in xamdatagrid.
Thanks.
0
votes
1answer
118 views
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 ...
0
votes
2answers
143 views
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 ...
0
votes
1answer
232 views
Ingragistic XamGrid: New record is not editable
Given,
<igDP:XamDataGrid Name="dataGrid"
DataSource="{Binding RecordList}">
<igDP:XamDataGrid.FieldLayoutSettings >
...
0
votes
1answer
138 views
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 ...
0
votes
1answer
221 views
Xamdatagrid howto get the current Cell on right click
here is the scenario I want ta achieve on some XamDataGrid
Some Cells may be selected in the grid - cells and not records
User right clicks on a cell in the grid
I would like to add the right ...
0
votes
0answers
89 views
Colouring a hierarchical XamDataGrid
I'm using a XamDataGrid (Infragistics-control) to display some hierarchical data. The objects that I can have up to 10 levels and I need to be able to give each level a specific background-color. I ...
0
votes
0answers
226 views
WPF understanding Selector.IsSynchronizedWithCurrentItem
Do not know if this is specific to the Infragistics xamDataGrid but here goes the question:
Infragistics xamDataGrid exposes a property IsSynchronizedWithCurrentItem, which according to their ...
0
votes
0answers
56 views
difference between wpfdatagrid and xamdatagrid
I want to know what extra features does these 3rd Party control Datagrid, xamdatagrid in particular, provide which are not available in wpfdatagrid.
Basically difference between wpfdatagrid and ...
0
votes
1answer
240 views
Infragistics XamDataGrid special grouping
How can I set field layout to XamDataGrid like this:
Any ideas are welcome, either by grouping or using master-detail.
0
votes
0answers
184 views
Implementing row details with XamDataGrid
Right now i am trying to implement something like the RowDetails feature of the WPF DataGrid into the XamDataGrid. What i have tried to do (and failed until now):
1.) Replace ...
0
votes
1answer
173 views
WPF DataTemplate and usercontrol lifetime
I have a tab control with a few tabs. When a tab is selected, I set the content of the tab to its corresponding view model.
I also have a DataTemplate defined for the base view model that all of the ...
0
votes
1answer
185 views
Sorting an XamDataGrid by multiple columns
Can someone point me to an example in code for sorting a XamDataGrid by multiple columns, such as
columnA desc, then columnB asc
thanks
Oskar
0
votes
2answers
624 views
XamDataGrid Field value as gradient Background
I have Infragistics XamDataGrid and in it, there are few columns which show data in percentage.
Now I want these columns to show the value as percentage and Background as a 2-color gradient, in which ...
0
votes
1answer
362 views
Find DataRecord from DataItem for Infragistics DataPresenter
I'm trying to retrieve the DataRecord associated with a given data item bound to my XamDataGrid. Is there any way to find the DataRecord other than enumerating through all the DataRecords in the ...
0
votes
3answers
938 views
Infragistics XamDataGrid with variable number of columns
I need to be able to support a XamDataGrid which at design time will not have a set number of columns. For example, the app will run, get some data from the server and create some objects. Depending ...
0
votes
1answer
1k views
How to bind a xamDataGrid to a dataset in WPF4?
I am developing a WPF4 app and using DataSet to populate a xamDataGrid (from Infragistics).
Here is the xaml for datagrid:
<igDP:XamDataGrid AutoFit="True" BindToSampleData="False" Grid.Column="1" ...
0
votes
2answers
566 views
How can I call IValueConverter by user request? [XamDataGrid record index]
I want to add record index like MS Excel in my XamDataGrid control. I use for this trick with IValueConverter. I define some template for displaying record indexes width this XAML-code:
...
0
votes
1answer
488 views
XamDataGrid Hierarchical Structure with same Datatype
I'm new in the XamDataGrid-Topic. Currently I'm playing around with the XamDataGrid to find out what functionality is offered.
I already have two questions:
I have hierarchical Data that looks like ...
0
votes
0answers
295 views
XamDataGrid only pastes first line of text off the clipboard into a cell
I'm trying to use the Infragistics XamDataGrid control on a WPF page to take user input as a dynamic table. The user should be able to copy and paste any required text into the cells, with no ...
0
votes
1answer
1k views
setting Column width of XamDataGrid in XAML
I want to set the Column width of XamDataGrid in XAML. There is no Width Property available like
<ip:Field Label="Name" ........... Width="60"/>
Here is my sample code.
...
0
votes
1answer
437 views
ObjectDataProvider in MVVM not neccessary?
I have created a simple MVVM, with only three classes CashFlowView, CashFlowViewModel, CashFlowModel.
I use an infragistic's 9.1 XamDataPresenter (or xamDataGrid).
<igDP:XamDataPresenter ...
0
votes
1answer
460 views
XamDataGrid Collection Column
Is there a way to bind to a collection column in a XamDataGrid DataSource?
What i am trying to do is to show all the items of the specific column collection in a single grid field. (using the ...
0
votes
3answers
3k views
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 ...
0
votes
0answers
1k views
DynamicResource and Dynamic Items in ContextMenu on XamDataGrid
I would like to dynamically create a set of context menu options based upon some properties.
Currently, I am creating a context menu as a DynamicResource with the visibility of the menu options ...
0
votes
0answers
2k views
Dynamically Adding Columns to a Databound XamDataGrid
One approach I've tried to solve my problem of needing to be able to dynamically add columns to a databound xamDataGrid is to bind to a .NET DataTable. At startup, I hard-code some data into the ...