The problem is normally the details takes a collection object from the parent which is fine in most cases but in this case I have an object for example
class person
{
string name
string job
string description
}
And I want each row to show NAME and JOB and when I expand that row
to should the details I want to show DESCRIPTION.
Is there any easy way to have the detailstable have access to get the DESCRIPTION?
Hoping there is a cleaner way that using onDataBinding and reassign the datasource?
class person
{
string name
string job
string description
}
And I want each row to show NAME and JOB and when I expand that row
to should the details I want to show DESCRIPTION.
Is there any easy way to have the detailstable have access to get the DESCRIPTION?
Hoping there is a cleaner way that using onDataBinding and reassign the datasource?