thank you for your replay.
what do you mean with this step?
in particular, the last part of the phrase āadd both fields toghether thereā.
Iām looking editviewdefs.php
for Accounts: in my code I have a thing similar this:
array (
0 =>
array (
ānameā => ānameā,
ālabelā => āLBL_NAMEā,
ādisplayParamsā =>
array (
ārequiredā => true,
),
),
1 =>
array (
ānameā => āphone_officeā,
ālabelā => āLBL_PHONE_OFFICEā,
),
),
name and phone_office are in the same row, but in two different columns How can I put together both?
array ( 0 => array ( 0 => array ( 'name' => 'name', 'label' => 'LBL_NAME', 'displayParams' => array ( 'required' => true, ), ), 1 => array ( 'name' => 'phone_office', 'label' => 'LBL_PHONE_OFFICE', ), ), ),
this can be a solution? I donāt know well how can I nested the informations.
thank you,
B.