Sugar 7 Contact module record view header add middle name

Hello,

I want to add middle name record view header pane in contact module.

Ramana Raju Santhana Francesca Shiekh Alan Apter

Thanks

Dipesh

Offshore Evolution Pvt Ltd

Parents
  • I believe you will need to customize both the fullname feld type:

    clients/base/fields/fullname

     

    and the Contacts record view php

                    array(
                        'name' => 'full_name',
                        'label' => 'LBL_NAME',
                        'dismiss_label' => true,
                        'type' => 'fullname',
                        'fields' => array('salutation', 'first_name', 'last_name'),
                    ),

    HTH

    Francescas

Reply
  • I believe you will need to customize both the fullname feld type:

    clients/base/fields/fullname

     

    and the Contacts record view php

                    array(
                        'name' => 'full_name',
                        'label' => 'LBL_NAME',
                        'dismiss_label' => true,
                        'type' => 'fullname',
                        'fields' => array('salutation', 'first_name', 'last_name'),
                    ),

    HTH

    Francescas

Children