I have multiple Things
in AnotherThing
now I am trying to order them in my edit action in my AnotherThing Controller
- I can access the Things
just fine in my edit, but I want to sort them differently (not over their ID), for example Things.pos
Whats the best practice here? I tried it with
public $hasMany = array(
'Thing' => array(
'order' => 'Thing.pos DESC'
)
);
But nothing changed. Any idea?