i have a xamdatagrid that display a list of objects, and each has a list of other object.
the xamdatagrid shows automatically the fields names in the grid.
is there a way to hide those hedlines?
can i edit those headlines?
thanks, gadi
Hi,
For each level of data a new FieldLayout is created, meaning you can do the same things using FieldLayout[1].
Regards Petar.
Thank you
it worked perfectly..
my problem now is this,
as i have told u each item in the grid contains inside itself list, which sets visible when the cell is expending.
Can i hide or edit those records' which repreasent the inner list headlines ?
Hello Gadi,
You can set the headers' visibilty for each FiledLayout like so:
xamDataGrid1.FieldLayouts[0].Settings.LabelLocation =
LabelLocation.Hidden;
and you can set each Field's Label property in a FiledLayout like so:
xamDataGrid1.FieldLayouts[0].Fields[0].Label =
"your Headline";
Sincerely,
Petar Monov,
DS Engineer,
Infragistics Bulgaria