Thursday, June 14, 2012

Liferay Search Container : Orderable Columns

In this post we are going to implement the orderable columns for search container.

Following are the steps -

1. Put the following code in your jsp which is used to render the search container.

String orderByCol = "";
String orderByType = "";
orderByCol = (String)request.getAttribute("orderByCol");
orderByType = (String)request.getAttribute("orderByType");
if (orderByCol == null || orderByType == null) {
orderByCol = "defaultColumn";
orderByType = "defaultOrder";
}
OrderByComparator orderByComparator = new TitleComparator(orderByType);
resultList = ListUtil.sort(resultList,orderByComparator);

This If condition is provided to handle the default case. Here defaultColumn and defaultOrder can be replaced with the desired column and order respectively. Here we are sorting the results on the title column.

2.  Here is the TitleComparator.java code -


public class TitleComparator extends OrderByComparator {
privatestaticfinallongserialVersionUID = 1L;
public TitleComparator()
{
this(true);
}
public TitleComparator(boolean asc)
{
ascBoolean = asc;
}
@Override
public int compare(Object obj1, Object obj2) {
MBThread thread1 = (MBThread)obj1;
MBThread thread2 = (MBThread)obj2;
int val = thread1.getTitle().compareToIgnoreCase(thread2.getTitle());
if (ascBoolean) {
return val;
} else {
return -val;
}
}
privateboolean ascBoolean;
}
view raw TitleComparator hosted with ❤ by GitHub

3.  add the following code to your controller's render method :


String orderByCol = "";
String orderByType = "";
boolean isFollowForum = false;
orderByCol = (String)request.getParameter("orderByCol");
orderByType = (String)request.getParameter("orderByType");
if (Validator.isNotNull(orderByCol) && Validator.isNotNull(orderByType)) {
request.setAttribute("orderByCol", orderByCol);
request.setAttribute("orderByType", orderByType);
}

4.  Here is the search container part -


<liferay-ui:search-container delta="5" emptyResultsMessage="no-results-found"
orderByCol="<%= orderByCol %>" orderByType="<%= orderByType %>">
<liferay-ui:search-container-results results="<%=ListUtil.subList(resultList, searchContainer.getStart(), searchContainer.getEnd()) %>" total="<%=threads.size()%>" />
<liferay-ui:search-container-row
className="com.liferay.portlet.messageboards.model.MBThread"
keyProperty="threadId" modelVar="thread">
<liferay-ui:search-container-column-text name="Title"
value="<%= thread.getTitle()%>" orderable="true" orderableProperty="title" />
</liferay-ui:search-container-row>
<liferay-ui:search-iterator />
</liferay-ui:search-container>


Now Title column in the search container will be rendered as clickable and upon clicking will sort the title column data.

3 comments:

  1. Hmmm.... so if I set

    orderableProperty=“title” in

    <liferay-ui:search-container-column-text name=“Title”

    value=”” orderable=“true” orderableProperty=“title” />

    it's available from orderByCol = (String)request.getAttribute(“title”);

    , didn't try it myself. just thinking..

    ReplyDelete
  2. It will be available from

    orderByCol = (String)request.getAttribute(“orderByCol”);

    ReplyDelete
  3. Hi,

    I wanted to make header clickable , so that i can give user dynamic sorting . Even after using your snippets , i was unable to make it work . Can you send me working code solution for this on sand.mayur@gmail.com

    Thanks in advance

    ReplyDelete