hi
i have a XamDataGrid, whose FieldLayout i have to set in code behind.
the Layout has came from some other objects as property.
like
{
grid.FieldLayouts.Add(newLayout);
grid.DefaultFieldLayout = newLayout;
grid.FieldLayouts.Remove(oldLayout);
}
SetGridLayout(
this.DetailGrid, dlg.UnSelectedFieldLayout);
Hello,
Could you please point out where the problem is?
hi Alex,
i got error on line
grid.FieldLayouts.Add(newLayout); in above code of piece from Method
SetGridLayout(....)
thanx
Laki
Laki,
I am attaching a sample that I made trying to reproduce this problem.
Let me know what is different in your scenario.
Alex
Alex,
Thanks for your sample. What we really looking for is to use a Fields Layout between two grids. We know if we create a field Layout in a resource we can reuse it but our case is different.
We have a selected and un selected grid and want to provide the same layout for them so what we do is
Allow user to set the FieldLayout for the selected grid , now we do something like
XamDataGrid selectedgrid
XamDataGrid unselectedgrid
FieldLayout selectedgridLayout = selectedgrid.DefaultFieldLayout;
unselectedgrid.DefaultFieldLayout = selectedgridLayout;
we get the error mentioned (Can not copy field layout)
We do understand that if FieldLayout is attached to one grid we can not reuse it for another grid what we are looking for is a method
to copy FieldLayout from currently displayed grid
Any suggestions are apppretiated
Thanks for the additional information and clearing that up. In this case, I would recommend using the Save and LoadCustomizations method of the XamDataGrid.
Please follow this link on more information about these methods in our help(Save, Load) or in the Andrew Flick blog post:
http://forums.infragistics.com/wpf/codesamples/archives/79116.aspx
Let me know if you have any questions on this.
i didn't any update on last reply from "rvaid".
regards,
I am working on that. I am not sure about the reason why that it is not working.
thanks for reply.
one thing i notice after loading customisation i try to see the value of FieldLayout in
xamDataGrid2_AssigningFieldLayoutToItem(...)
it's field=0 ;
below is the code i used
myClickEvent {
using
(FileStream fs = new FileStream("xamDataGridLayout1.xml", FileMode.Open, FileAccess.Read))
this.xamDataGrid2.LoadCustomizations(fs);
xamDataGrid2.DataSource = people;
e)