This kind of question is a little outside the scope of the framework, and I don't really want to support data grids, and the like - just the framework. I'm sure you understand.
Anyway, if you are using binding, you can either modify the grid layout or you can add a property to A that exposes B.nombre. Since I don't really know how you are populating the grid, I'm not sure exactly what the best method is.
- Richard.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hi,
I has a following structure.
Object A has many Objects B.
Now, i am using a datagrid to view a list of B that its part of A, but i need view B.nombre in DataGrid.
How do it?
saludos
Victor (Madrid Spain)
Hi Victor,
This kind of question is a little outside the scope of the framework, and I don't really want to support data grids, and the like - just the framework. I'm sure you understand.
Anyway, if you are using binding, you can either modify the grid layout or you can add a property to A that exposes B.nombre. Since I don't really know how you are populating the grid, I'm not sure exactly what the best method is.
- Richard.
I have a similar problem! Were you able to figure it out, Victor?
Thanks
Parth
hi,
In the object B:
Property nombreA
get
a.nombre
Victor