Thsi may fit your needs.
Add a code like that into Propery Field def at editviewdefs.php:
PHP Code:
'displayParams' =>
array (
'field_to_name_array' => array(
'id' => 'accounts_tenyaccounts_ida',
'name' => 'accounts_test_company_name',
'billing_address_street' => 'billing_address_street',
'billing_address_city' => 'billing_address_city',
'billing_address_state' => 'billing_address_state',
'billing_address_country' => 'billing_address_country',
'billing_address_postalcode' => 'billing_address_postalcode',
'website' => 'website',
'phone_office' => 'phone_office',
'phone_fax' => 'phone_fax',
'phone_alternate' => 'phone_alternate',
'employees' => 'employees',
'annual_revenue' => 'annual_revenue',
'industry' => 'industry',
'account_type' => 'account_type',
),
'additionalFields' => array(
'website' => 'website',
'phone_office' => 'phone_office',
'phone_fax' => 'phone_fax',
'phone_alternate' => 'phone_alternate',
'employees' => 'employees',
'annual_revenue' => 'annual_revenue',
'industry' => 'industry',
'account_type' => 'account_type',
),
),
In this code the left side field is the source field (Property module) and the right side field is the target field.
Obviously update it with your fields.
Cheers
Bookmarks