I have posted couple of articles related to sort search container results in Liferay.
You can refer to my blog post Orderable Search Container In Liferay to sort database results using Liferay search container.
If you want to sort results coming from solr using search container then refer to this blog post Sort Solr Results Using Search Container.
But what if you don't have any database/solr results and still you want to user Liferay search container ? . For example let say if you List<Long> and you want to display the same using Liferay search container.
You can refer to my blog post Orderable Search Container In Liferay to sort database results using Liferay search container.
If you want to sort results coming from solr using search container then refer to this blog post Sort Solr Results Using Search Container.
But what if you don't have any database/solr results and still you want to user Liferay search container ? . For example let say if you List<Long> and you want to display the same using Liferay search container.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<liferay-ui:search-container> | |
<liferay-ui:search-container-results | |
results="<%= longList %>" | |
total="<%= longList.size() %>" /> | |
<liferay-ui:search-container-row | |
className="Long" // or you can use "java.lang.Long" | |
modelVar="longObj"> | |
<liferay-ui:search-container-column-text name="Id" value="<%= longObj %>"> | |
</liferay-ui:search-container-row> | |
<liferay-ui:search-iterator /> | |
</liferay-ui:search-container> |
Hi
ReplyDeletecan you post or mail me code babusaravana75@gmail.com regarding search container with mysql and crud operation with it
I don't have ready portlet but you can use the code snippet available in this post for search container .
Delete