How to change default sort in custom subpanel - sugarcrm?

老子叫甜甜 提交于 2019-12-01 23:05:58
Sherlock

In your layout_defs change the sort_by to the desired column :

<?php
   $layout_defs['ModuleName']['subpanel_setup']['Subpanelname'] = array(
        'order' => 50,
        'sort_order' => 'desc',
        'sort_by' => 'date_entered',
   );
?>

In this example, the default column used for sorting is date_entered

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!