I am having trouble figuring out how I can sort a list of items in descending order according to their created date (I know Sitecore allows for sorting items in ascending order by their created date). I'm still pretty new with Sitecore, so I'm not sure what to do...Any suggestions would be helpful!
Item[] BlogPosts = HomeItem.Axes.SelectItems(@"child::*[@@templatename='BlogComment']");
if (BlogPosts != null)
{
DataSet ds = new DataSet();
DataTable posts = ds.Tables.Add("posts");
posts.Columns.Add("PostName", Type.GetType("System.String"));
posts.Columns.Add("DateCreated", Type.GetType("System.String"));
posts.Columns.Add("PostComment", Type.GetType("System.String"));
foreach(Item PostItem in BlogPosts)
{
DataRow dr = posts.NewRow();
dr["PostName"] = PostItem.Fields["Name"].Value;
dr["DateCreated"] = PostItem.Statistics.Created;
dr["PostComment"] = PostItem.Fields["Comment"].Value;
posts.Rows.Add(dr);
}
commentsListRptr.DataSource = ds;//this is a repeater I'm using to show the data
commentsListRptr.DataMember = "posts";
commentsListRptr.DataBind();
}
You can sort the items using LINQ:
Obviously change the query or item list to fit your requirements.
EDIT following addition of code:
Set up a repeater in your ascx, we'll use the Sitecore FieldRenderer but disable webediting in this control:
And in your code behind on Page_Load bind the control, bind the datasource of your repeater and then set the FieldRenderer Item and display the created date in the format to suit.
Your Sitecore Query can be very expensive performance wise depending on how much content you have how deep your content tree is, I'm not sure which version of Sitecore you are using, but in any case you look to index your content (with Lucene) and use that to retrieve the posts. If you are using Sitecore 7 the take a look at this post about Linq to Sitecore