Fórum

Can I use search-container without a database ?

Lukas Barina, modificado 11 Anos atrás.

Can I use search-container without a database ?

New Member Postagens: 8 Data de Entrada: 07/06/12 Postagens Recentes
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
Jignesh Vachhani, modificado 11 Anos atrás.

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

Liferay Master Postagens: 803 Data de Entrada: 10/03/08 Postagens Recentes
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
Lukas Barina, modificado 11 Anos atrás.

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

New Member Postagens: 8 Data de Entrada: 07/06/12 Postagens Recentes
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
Amos Fong, modificado 11 Anos atrás.

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

Liferay Legend Postagens: 2047 Data de Entrada: 07/10/08 Postagens Recentes
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
Harish Kumar, modificado 11 Anos atrás.

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

Expert Postagens: 483 Data de Entrada: 31/07/10 Postagens Recentes
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,
Lukas Barina, modificado 11 Anos atrás.

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

New Member Postagens: 8 Data de Entrada: 07/06/12 Postagens Recentes
Amos&Harish, that's great , thanks guys for the help !
thumbnail
Jay Trivedi, modificado 11 Anos atrás.

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

Regular Member Postagens: 109 Data de Entrada: 24/11/12 Postagens Recentes
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
Chirag Patadia, modificado 11 Anos atrás.

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

Junior Member Postagens: 29 Data de Entrada: 03/02/12 Postagens Recentes
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.
Mrinal kumar, modificado 11 Anos atrás.

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

New Member Postagens: 15 Data de Entrada: 31/01/13 Postagens Recentes
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
Jay Trivedi, modificado 11 Anos atrás.

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

Regular Member Postagens: 109 Data de Entrada: 24/11/12 Postagens Recentes
Thanks Mrinal. emoticon