Custom field with type interval period (like job interval)

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 :frowning: 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.