I wnat a field sortable in the subpanel contacts of the prospect list.
how to?
I wnat a field sortable in the subpanel contacts of the prospect list.
how to?
Last edited by kinshibuya; 2008-08-27 at 01:39 PM.
Solved.
As i wanted to sort the list of the submenu Contacts in the Prospect list, i went to:
/opt/sugarcrm-5.0.0f/htdocs/sugarcrm/modules/Contacts/metadata/subpanels/default.php
and changed this line on the field i wanted to sort(account_name)
and change to this:Code:'account_name'=>array( 'name'=>'account_name', 'module' => 'Accounts', 'target_record_key' => 'account_id', 'target_module' => 'Accounts', 'widget_class' => 'SubPanelDetailViewLink', 'vname' => 'LBL_LIST_ACCOUNT_NAME', 'width' => '22%', 'sortable'=>false, // <------------ this line! ),
and then it worked.Code:'account_name'=>array( 'name'=>'account_name', 'module' => 'Accounts', 'target_record_key' => 'account_id', 'target_module' => 'Accounts', 'widget_class' => 'SubPanelDetailViewLink', 'vname' => 'LBL_LIST_ACCOUNT_NAME', 'width' => '22%', 'sortable'=>true, // <-------- here! ),![]()
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks