Where is sorting customization for header bar arrows in list view located?

We are trying to move to a new  virtualized server. 

I have changed no code and only the MySQL version has change from 5.5 to 5.1

Now the sorting arrows in the list view header in one of the custom modules doesn't work. 

I am trying to find where any customization to this module has in the way of sorting.

Note: The advance search still sort correctly.

Parents
  • Amy,

    That field attribute is typically found in the listviewdefs.php as 'sortable' => false, but the default is 'sortable'=>true, so if it is not there, the default should add the sorting for you.  Another place is the custom/modules/<module_name>/Ext/Layoutdefs/layoutdefs.ext.php which has an attribute that usually says: 'sort_order' => 'asc', -- but, that is only designating which direction to sort as a default, not IF it should be sortable.

    Plus, again, I assume if you copied all of the code, that should be there.

    I guess another option, since you mention that this is a custom module is to check the database. As I read in an answer by Prashant Patel "Check the 'fields_meta_data' table that is not having entries of your custom fields that you have created from studio"

    Finally, have you done a Repair?

    Let me know if any of this is helpful.

Reply
  • Amy,

    That field attribute is typically found in the listviewdefs.php as 'sortable' => false, but the default is 'sortable'=>true, so if it is not there, the default should add the sorting for you.  Another place is the custom/modules/<module_name>/Ext/Layoutdefs/layoutdefs.ext.php which has an attribute that usually says: 'sort_order' => 'asc', -- but, that is only designating which direction to sort as a default, not IF it should be sortable.

    Plus, again, I assume if you copied all of the code, that should be there.

    I guess another option, since you mention that this is a custom module is to check the database. As I read in an answer by Prashant Patel "Check the 'fields_meta_data' table that is not having entries of your custom fields that you have created from studio"

    Finally, have you done a Repair?

    Let me know if any of this is helpful.

Children
No Data