Hi,
I want to build a field that contains the union of two fields.
For ex. (Fullname contains Firstname and Lastname).
How can i do this?
thanks
Hi,
I want to build a field that contains the union of two fields.
For ex. (Fullname contains Firstname and Lastname).
How can i do this?
thanks
Hi
Use this
PHP Code:
'first_name' =>
array (
'name' => 'first_name',
'vname' => 'LBL_FIRST_NAME',
'type' => 'varchar',
'len' => '100',
'unified_search' => true,
'comment' => 'First name of the contact',
'merge_filter' => 'selected',
),
'last_name' =>
array (
'name' => 'last_name',
'vname' => 'LBL_LAST_NAME',
'type' => 'varchar',
'len' => '100',
'unified_search' => true,
'comment' => 'Last name of the contact',
'merge_filter' => 'selected',
'importable' => 'required',
),
'full_name' =>
array (
'name' => 'full_name',
'rname' => 'full_name',
'vname' => 'LBL_NAME',
'type' => 'name',
'fields' => array('first_name', 'last_name'),
'sort_on' => 'last_name',
'source' => 'non-db',
'group'=>'last_name',
'len' => '510',
'db_concat_fields'=> array(0=>'first_name', 1=>'last_name'),
),
Letrium ltd. - Only high quality service
http://letrium.com
thanks for your replay.
a question,
where i can custom this file?
I use modules contacts e i want to see this field in detailview.
Letrium ltd. - Only high quality service
http://letrium.com
thank you so much
i have resolt.
I have another question,...
if i want custom the layout, the name up the last name, not all in a single line
for ex.
First name
Lastname
how i can do???
Thaks
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks