17488 Posts in 4473 Topics by 1978 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 2281 Views |
-
sorting in the control Children

30 April 2008 at 10:59am
Hello,
After reading tutorials and a few docs about data managment, I wonder if this is possible to sort data at template level, typicaly in the
<% control Children %>
tag.
I realize that this would be a little agains MVC model...
Many thanks,
Eric -
Re: sorting in the control Children

30 April 2008 at 5:06pm
I'm not quite sure you can do that in the templates, at least I've never investigated far enough to do so. Is there any reason to go against the MVC model?
You may, be able to do this, in your model class:
function FilteredChildren($filter = 'ID DESC') {
return DataObject::get('Page', "ParentID = {$this->ID}", $filter);
}Then you could go:
<% control FilteredChildren('Title DESC') %>
If you leave the parameter out, it uses "ID DESC" - the default. However, I've not tested this, the templating system might not allow it.
Cheers,
Sean
| 2281 Views | ||
|
Page:
1
|
Go to Top |


