Last active
December 18, 2015 23:58
Search Container usergroup.jsp
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
<!-- In order to display data in Search Container we will use liferay default Search Container --> | |
<liferay-ui:search-container searchcontainer="${userGroupSearchContainer}"> | |
<!-- In order to get the total results and also to display no. of data --> | |
<liferay-ui:search-container-results results="<%=searchContainer.getResults() %>" total="<%=searchContainer.getTotal() %>"> | |
<!-- Display Row with Name and Description as columns --> | |
<liferay-ui:search-container-row classname="com.liferay.portal.model.UserGroup" keyproperty="userGroupId" modelvar="userGroup"> | |
<liferay-ui:search-container-column-text name="Name" property="name" /> | |
<liferay-ui:search-container-column-text name="Description" property="description" /> | |
</liferay-ui:search-container-row> | |
<!-- Iterating the Results --> | |
<liferay-ui:search-iterator /> | |
</liferay-ui:search-container-results> | |
</liferay-ui:search-container> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment