掲示板

Can I use search-container without a database ?

11年前 に Lukas Barina によって更新されました。

Can I use search-container without a database ?

New Member 投稿: 8 参加年月日: 12/06/07 最新の投稿
Hello,
I am kind of new in the liferay world.
I have some list of values I want to render it in jsp page with pagination features for the begining.
I saw how the liferay-ui-:search-container works, I really liked it and would like to use it for rendering of my list.

Do anybody know how to use liferay-ui:search-container if I don't use a database at all, is it even possible?
I have just a list of strings, let's say people names and I would like to render them in the search container.
I understoood how to define the search-container-results values form that list but I am lost how to prepare my
own model class for list
that is required by the search-container-row section.
I understood that's it is normally representation of some table, but in my case I don't use databases at all.


Thanks for any idea

Lukas
thumbnail
11年前 に Jignesh Vachhani によって更新されました。

RE: Can I use search-container without a database ?

Liferay Master 投稿: 803 参加年月日: 08/03/10 最新の投稿
Hi Lukas,

As per my understanding , you can definitely use search container using your modal class and setting properties.
For more about search container creation, you can check this Blog
11年前 に Lukas Barina によって更新されました。

RE: Can I use search-container without a database ?

New Member 投稿: 8 参加年月日: 12/06/07 最新の投稿
Hi Jiqnesh,
thanks for your reply. I checked the blog so I found that this example the model class is
com.liferay.portlet.journal.model.JournalArticle
As I can see this class extends from JournalArticleModel which extends from BaseModel

So i my case where I have just a list of people names what would be the proper way to implement
such a model class?
I suppose the main necessary thing here is that my class People extends the liferay's BaseModel class
Still I'am not sure how my class People would look like, what class attributes I shoud define, what
constructor and methods it should contain. Do you think you can post some example of my class People,
it would help me to understand how it works.

Thanks Lukas
thumbnail
11年前 に Amos Fong によって更新されました。

RE: Can I use search-container without a database ? (回答)

Liferay Legend 投稿: 2047 参加年月日: 08/10/07 最新の投稿
Hi Lukas,

You should be able to use it using standard java classes. Something like this should be fine (I didn't test this exact code).

<liferay-ui:search-container>
		<liferay-ui:search-container-results results="<%= stringList %>" total="<%= stringList.size() %>" />

		<liferay-ui:search-container-row classname="java.lang.String" modelvar="listMember"></liferay-ui:search-container-row></liferay-ui:search-container>
thumbnail
11年前 に Harish Kumar によって更新されました。

RE: Can I use search-container without a database ? (回答)

Expert 投稿: 483 参加年月日: 10/07/31 最新の投稿
Hi Lukas

Yes you can use search container without a database. Here is the sample code to iterate over arraylist of String using search container


&lt;% 
   List<string> testList = new ArrayList<string>();
   for(int i=0;i&lt;=50;i++)
   {
	   testList.add("String " + i);
   }
%&gt;
       <liferay-ui:search-container delta="10" emptyresultsmessage="No Items were found!!">
		<liferay-ui:search-container-results results="<%=ListUtil.subList(testList, searchContainer.getStart(), searchContainer.getEnd())%>" total="${testList.size()}" />
		<liferay-ui:search-container-row classname="String" modelvar="data">
			<liferay-ui:search-container-column-text name="name" value="<%=data %>" />
		</liferay-ui:search-container-row>
	</liferay-ui:search-container>
</string></string>



Regards,
11年前 に Lukas Barina によって更新されました。

RE: Can I use search-container without a database ? (回答)

New Member 投稿: 8 参加年月日: 12/06/07 最新の投稿
Amos&Harish, that's great , thanks guys for the help !
thumbnail
11年前 に Jay Trivedi によって更新されました。

RE: Can I use search-container without a database ?

Regular Member 投稿: 109 参加年月日: 12/11/24 最新の投稿
Hey Harish,
I have a simlilar form of question with different edge.
Lets say we can display a ArrayList<String> of UserName. But if i have an long array of ids and also i want to display that id. is that possible to display more than one list in searchContainer or that goes under limitation.

Here a sample code may help you to understand my problem in deep.


<liferay-ui:search-container delta="10" emptyresultsmessage="Data-Not-Found">
		<liferay-ui:search-container-results results="<%=ListUtil.subList(usersNameList, searchContainer.getStart(), searchContainer.getEnd()) %>" total="<%=usersNameList.size() %>" <%int index="0;" %>
		/&gt;
			<liferay-ui:search-container-row classname="java.lang.String" modelvar="userToDisplay">
				<liferay-ui:search-container-column-text name="UserName" value="<%=userToDisplay %>" />
				
				&lt;%-- &lt;% for(int i=0;i<userid1.length;i++) { %> --%&gt;
				<liferay-ui:search-container-column-text>
					<input type="checkbox" name="userCheck" id="userCheck" value="<%[color=#8d0404]String.valueOf(userId1[index=index+1])[/color];%>">
				</liferay-ui:search-container-column-text>
				&lt;%-- //&lt;%} %&gt; --%&gt;
			</userid1.length;i++)></liferay-ui:search-container-row>
			<liferay-ui:search-iterator />
	</liferay-ui:search-container-results></liferay-ui:search-container>


As you can see i am setting userid as value of checkbox, i want to add that userid as another list, so one more list in searchcontainerrow is that possible?
Any Suggestions or Alternatives?


Thanks and Regards,
Jay.
thumbnail
11年前 に Chirag Patadia によって更新されました。

RE: Can I use search-container without a database ?

Junior Member 投稿: 29 参加年月日: 12/02/03 最新の投稿
Hi Jay,

You can achieve your requirement with below alternative.
You can keep your one Arraylist<String> which contains UserName as it is and for Ids why dont you create HashMap object with UserName string as key and Ids as value in HashMap.

By creating HashMap, you only need to fetch values from the Map in search container code where you are adding code for CheckBox.

Best Regards,
Chirag Patadia.
11年前 に Mrinal kumar によって更新されました。

RE: Can I use search-container without a database ?

New Member 投稿: 15 参加年月日: 13/01/31 最新の投稿
Hi...

I have tried this example..

but there is not data grid displayed... its empty.. : Its portlet code

code:
<%@ taglib uri="http://java.sun.com/portlet_2_0" prefix="portlet" %>
<%@ page import="java.util.*"%>
<%@page import="com.liferay.portal.kernel.util.ListUtil"%>
<%@ taglib uri="http://liferay.com/tld/ui" prefix="liferay-ui" %>

<portlet:defineObjects />

This is the <b>Dash Boardsss</b> portlet in View mode.




<%

List<String> testList = new ArrayList<String>();

for(int i=0;i<=50;i++)

{

testList.add("String " + i);

}

%>

<liferay-ui:search-container delta="10" emptyResultsMessage="No Items were found!!">

<liferay-ui:search-container-results results="<%=ListUtil.subList(testList, searchContainer.getStart(), searchContainer.getEnd())%>" total="${testList.size()}" />

<liferay-ui:search-container-row className="java.lang.String" modelVar="data">
<liferay-ui:search-container-column-text name="name" value="<%=data %>" />

</liferay-ui:search-container-row>

</liferay-ui:search-container>

This is the <b>END</b> portlet in View mode

Whats could be the issue?
thumbnail
11年前 に Jay Trivedi によって更新されました。

RE: Can I use search-container without a database ?

Regular Member 投稿: 109 参加年月日: 12/11/24 最新の投稿
Thanks Mrinal. emoticon