Results 1 to 4 of 4

Thread: Want to sort list view on date

  1. #1
    pravin.agham is offline Senior Member
    Join Date
    Sep 2010
    Posts
    64

    Default Want to sort list view on date

    Hi All,

    I want to sort the list view records on date by Descending order. How I can do this is Sugarcrm.
    I want to do this in all modules


    Thanks,
    Pravin

  2. #2
    andopes's Avatar
    andopes is offline A Sugar Hero | Help Forum Moderator
    Join Date
    Jul 2006
    Location
    São Paulo - Brazil
    Posts
    8,335

    Default Re: Want to sort list view on date

    You just need to edit the custom/modules/<Module>/metadata/listviewdefs.php and add the attribute

    PHP Code:
    'sortable'=> true
    Inside date field definition.

    Then go to Admin -> Repair -> Quick Repair and Rebuild

    Cheers
    André Lopes
    DevToolKit / Project of the Month - June 2009
    Lampada Global Services- Open Source Solutions
    Avenida Ipiranga, 318
    Bloco B - CJ 1602
    São Paulo, SP 01046-010
    Brazil
    Office: +55 11 3237-3110
    Mobile: +55 11 7636-5859
    e-mail: andre@lampadaglobal.com

    Lampada Global delivers offshore software development and support services to customers around the world.
    Lampada is proud to be a SugarCRM Gold Partner, revolutionizing Customer Relationship Management.

    I DO NOT answer questions through PM and Email. If you need some help post your question into SugarForum.

  3. #3
    pravin.agham is offline Senior Member
    Join Date
    Sep 2010
    Posts
    64

    Default Re: Want to sort list view on date

    Hi,

    I did the changes what you told in your post but there is nothing happen.

    I did-

    on custom/modules/Accounts/metadata/listviewdefs.php I chnaged-
    PHP Code:
    'DATE_MODIFIED' => 
      array (
      
    'width' => '10%',
      
    'label' => 'LBL_DATE_MODIFIED',
      
    'default' => true,
      
    'sortable'=> true,  
    ), 
    then make quick repair..

    It sorts by name by default. I want to sort on modified date in descending order.

    Is i missed up anythings!!

  4. #4
    Abuelodelanada's Avatar
    Abuelodelanada is offline Sugar Community Member
    Join Date
    Dec 2007
    Location
    Buenos aires, Argentina
    Posts
    36

    Default Re: Want to sort list view on date

    Quote Originally Posted by pravin.agham View Post
    Hi All,

    I want to sort the list view records on date by Descending order. How I can do this is Sugarcrm.
    I want to do this in all modules


    Thanks,
    Pravin
    Hello Pravin,

    In this PDF
    http://developers.sugarcrm.com/tutor...onships101.pdf
    you may read (Page 8):

    The Layout File – Tell the module to show a subpanel
    The layout file tells SugarCRM® to create a subpanel for the data from this relationship. It does not
    actually define the layout of the subpanel, it just makes space for it in the layout of the target module's
    DetailView. Again, there are two of these files, one for each module in the relationship. This is the Cases
    layout file:

    PHP Code:
    <?php
    $layout_defs
    ['Cases']['subpanel_setup']['opportunities'] = array(
    'order' => 99,
    'module' => 'Opportunities',
    'sort_order' => 'desc',
    'sort_by' => 'opportunity_id',
    'subpanel_name' => 'ForCases',
    'refresh_page' => 1,
    'get_subpanel_data' => 'opportunities',
    'add_subpanel_data' => 'opportunity_id',
    'title_key' => 'LBL_OPPORTUNITIES_SUBPANEL_TITLE',
    'top_buttons' => array(
    array(
    'widget_class' => 'SubPanelTopSelectButton'),
    ),
    );
    ?>
    This works for me!!

    Best regards

    Jose

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Default sort order in list view
    By door3ahmed in forum Help
    Replies: 14
    Last Post: 2012-03-13, 05:59 PM
  2. Sort columns in list view
    By DN667 in forum Help
    Replies: 12
    Last Post: 2011-05-27, 05:41 PM
  3. Sort columns in list view
    By youn008 in forum Help
    Replies: 1
    Last Post: 2009-06-18, 04:23 PM
  4. List View Currency Sort Problem
    By khetrick in forum Developer Help
    Replies: 0
    Last Post: 2009-03-18, 07:11 PM
  5. Custom Fields/List View/Sort
    By gkeyes in forum Help
    Replies: 1
    Last Post: 2008-10-07, 07:48 PM

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
  •