Results 1 to 2 of 2

Thread: how to make a field to order by record

  1. #1
    kinshibuya's Avatar
    kinshibuya is offline A Sugar Hero
    Join Date
    Jul 2008
    Location
    brasil
    Posts
    521

    Default how to make a field sortable

    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.

  2. #2
    kinshibuya's Avatar
    kinshibuya is offline A Sugar Hero
    Join Date
    Jul 2008
    Location
    brasil
    Posts
    521

    Default Re: how to make a field to order by record

    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)

    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 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'=>true, // <-------- here!
                    ),
    and then it worked.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Replies: 3
    Last Post: 2008-08-22, 11:21 PM
  2. Replies: 2
    Last Post: 2007-05-02, 01:25 PM
  3. Replies: 1
    Last Post: 2007-02-21, 06:32 PM
  4. trying to make the lead page display a new field
    By keak in forum Developer Help
    Replies: 0
    Last Post: 2007-02-17, 08:32 AM
  5. Make Account Name a required field
    By MORAND in forum Developer Help
    Replies: 6
    Last Post: 2006-07-20, 09:52 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •