<ComboBox Text="{Binding ElementName=m_DataGrid, Path=FieldLayouts[0].Fields[0].Label}"/>
<igDP:XamDataGrid Name="m_DataGrid"/>
The grid contents are changing for me every time I change the combobox selection and then click the button.
Joe
Hi -
Here is an MSDN article that discusses XAML PropertyPath syntax: http://msdn2.microsoft.com/en-us/library/ms742451.aspx
I am not familiar with how to use Linq so I can't comment there.
If you want XamDataGrid to sort on particular column you can add a FieldSortDescription for the column to the FieldLayout as discussed in this post: http://forums.infragistics.com/forums/p/4606/21863.aspx#21863
and implement a custom SortComparer to sort the records anyway you like as mentioned in this post: http://forums.infragistics.com/forums/p/5713/25585.aspx#25585
JoeM