如何在 SugarCRM 的特定列中从 listView(例如 Account)中删除排序?
具体:我想删除 Account Module 的 ListView 的 Name 字段(只有一个字段)的排序。
如何在 SugarCRM 的特定列中从 listView(例如 Account)中删除排序?
具体:我想删除 Account Module 的 ListView 的 Name 字段(只有一个字段)的排序。
Set 'sortable' => false for the field in the listviewdefs.php. Edit custom/modules/Accounts/metadata/listviewdefs.php and set such as:
'EMAIL1' =>
array (
'width' => '16%',
'label' => 'LBL_LIST_EMAIL_ADDRESS',
'sortable' => false,
'customCode' => '{$EMAIL1_LINK}{$EMAIL1}</a>',
'default' => true,
),