RE: Order Message Board

Arun Pandian, modified 5 Years ago. Junior Member Posts: 72 Join Date: 9/26/19 Recent Posts
Hi, Is there a way i can order the message board by displaying last created category as first?
is there any configuration available or is it possible by jsp override?
thumbnail
Vikash Chandrol, modified 5 Years ago. Junior Member Posts: 30 Join Date: 4/18/13 Recent Posts
Hi Arun,

Please create the fragment project of the message board portlet(web version) and override view_entries.jsp(from message_boards_admin folder).
there you can find below a line of code.

SearchContainer entriesSearchContainer = (SearchContainer)request.getAttribute("view.jsp-entriesSearchContainer");
using searchcontainer object you can get list of results(by using  getResults() ) .
so you can easily apply your logic to set specific order( using comprator or comprable java api)

Sample Logic
List<Object> customResults=entriesSearchContainer.getResults();

//you can add custom order logic here over the customResults object.

entriesSearchContainer.setResults(customResults); // assign back to search container.

Happy Coding emoticon