Thank you, Steve.
In respose to "access"; I am looking to pull the contents of a few fields in a child table as variables. and use them in the parent table's delegate class.
i need variables in a manner like this.
[parent table]
$locationString = $record->val('StreetNo').' '.$record->val('StreetName').' '.$record->val('City').' '.$record->val('State')
[child table]
$childLocationString = $record->val('StreetNo').' '.$record->val('StreetName').' '.$record->val('City').' '.$record->val('State')
The child table will contain about 5-10 records.
I not sure exactly how to handle the array.
The child table has similar field names as the parent table.
So my finished formula will be something like:
- Code: Select all
...$locationString...$childLocationString1.$childLocationString2.$childLocationString3...
I hope that helps clarify. I really appreciate all the forum member's help.
Thanks!!