Hi,
I have a hierarchical set of datas like this :
public class RadiosGenre{ public List<Radio> Radios;} and I would like to put them in the xamDataGrid... and if possibe with "lazy loading"Is it possible and how ?
I have try with the following code but it do not work :
<igDP:XamDataGrid x:Name="xdgGenres"> <igDP:XamDataGrid.FieldLayoutSettings> <igDP:FieldLayoutSettings AutoGenerateFields="False" /> </igDP:XamDataGrid.FieldLayoutSettings> <igDP:XamDataGrid.FieldLayouts> <igDP:FieldLayout> <igDP:FieldLayout.Fields> <igDP:Field Name="Title" Label="Title"/> <igDP:Field Name="Radios"/> </igDP:FieldLayout.Fields> </igDP:FieldLayout> </igDP:XamDataGrid.FieldLayouts> </igDP:XamDataGrid>
Hello Prasanti,
Thank you for your post. I have been looking into it and I created a sample project for you with the functionality you want. Basically I set the second FieldLayout’s Settings’ LabelLocation Property to Hidden. This way the child layout doesn’t have headers. Please let me know if this helps you or you have further questions on this matter.
Looking forward for your reply.
Thanks for taking the time to post your findings. Exactly what I was after and you saved me having to go through the steps, or similar, that you went through.
Cheers
Hello,
I would like to design XamDataGrid in the following way and not sure how can i achieve it. Can someone please help me.I am using MVVM pattern and using binding list to bind data
There will be three levels of drill down. For example Organization, Employee, Project.
Iniitally I want to show list of organizations which are edit only and we cannot add or delete organizations.
In second level, I would like to show list of employees where i can add/edit/delete employees. I this I need to show combo boxes as well.
In third level, I would like to show the project details they are working on. Here also I need to have Add/edit/delete the record option.
Currently I am achieving this using three grids. I would like to know whether we can merge these and show it in single Grid.
Follow this thread for the last question:
http://community.infragistics.com/forums/p/26803/98482.aspx#98482