3063 Posts in 864 Topics by 646 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 1726 Views |
-
Sort ComplexTableField in the CMS

22 June 2009 at 2:41am Last edited: 22 June 2009 9:35am
Hi,
I've got a simple news section made with DataObjects. Everything works fine, I just want to sort the entries by date.
$newsTable = new ComplexTableField(
$this,
'NewsArticles',
'NewsArticle',
array(
'ArticleDate' => 'Article Date',
'ArticleTitle' => 'Article Title'
),
null
);Can anyone give me a hint? Thanks!
-
Re: Sort ComplexTableField in the CMS

22 June 2009 at 9:34am Last edited: 22 June 2009 9:34am
Ahhh, that's how it works:
$newsTable = new ComplexTableField(
$this,
'NewsArticles',
'NewsArticle',
array(
'ArticleDate' => 'Article Date',
'ArticleTitle' => 'Article Title'
),
null,
null,
'ArticleDate DESC'
);
| 1726 Views | ||
|
Page:
1
|
Go to Top |

