Search code examples
pimcore

Order Custom View elements by creation date?


How can I order my Custom View list elements by o_creationDate instead of the standard alphabetic order?

Thanks in advance! /J


Solution

  • As it seems this is currently not possible. The custom views query parameters are applied in this method and there is no support for order:

    \Pimcore\Model\Element\Service::addTreeFilterJoins

    https://github.com/pimcore/pimcore/blob/master/pimcore/models/Element/Service.php#L750

    The actual order parameter is set in:

    \Admin_ObjectController::treeGetChildsByIdAction

    https://github.com/pimcore/pimcore/blob/master/pimcore/modules/admin/controllers/ObjectController.php#L106

    The above is valid for Pimcore 4.3.1