I searched all Forum but couldn't find this answer.
---
1º - When we click to create a new item in CMS, it automatically got created in the end of the list. This is really really bad when u got a bunch of articles and need to scroll down a lot to find it. Is there any way to the new item be created in the FIRST of the list, and not last?
---
2º - I have been trying to use this command in some controllers:
static $default_sort = "Created DESC";
The main objective is just to sort a specific list i need.
But it just brings no effect, tried to use Created, Title and others default rows... but never works (SilverStripe 2.4.4).
So, i made the hard decision to force it in "_config.php" using:
SiteTree::$default_sort = "Created DESC";
OK, it works fine, but i got all the tree sorted.
How can i do a specific sort in a specific page i need?
---
I'm trying to avoid change SilverStripe core, always using its own parameters.
Sorry my bad english guys, i'll would be grateful for your help.