Foros de discusión

Passing data onClick to a different page

Vaibhav Mittal, modificado hace 11 años.

Passing data onClick to a different page

Junior Member Mensajes: 54 Fecha de incorporación: 16/07/12 Mensajes recientes
I have built a search portlet which shows result in a table. One column of that table contains view hyperlink.

Now what I want is, when someone clicks on that view link, data from the result table gets passed to the new page and display result according to the data I am passing to the new page. Here new page should be same but display different result on clicking of different view links.
If someone can guide me the further steps.

Thnxx & Regards,
Vaibhav Mittal
thumbnail
Sid Sket, modificado hace 11 años.

RE: Passing data onClick to a different page

New Member Mensajes: 11 Fecha de incorporación: 20/02/12 Mensajes recientes
Hi Vaibhav,
I have done this using aui-dialog, passing the data to the calling popup based on the link clicked and the result will display accordingly.

Regards,
sid
thumbnail
Priyanka Dhingra, modificado hace 11 años.

RE: Passing data onClick to a different page

Liferay Master Mensajes: 501 Fecha de incorporación: 20/12/11 Mensajes recientes
you can use
<portlet:renderurl></portlet:renderurl>
thumbnail
Subhash Pavuskar, modificado hace 11 años.

RE: Passing data onClick to a different page

Regular Member Mensajes: 234 Fecha de incorporación: 13/03/12 Mensajes recientes
Hi Vaibhav Mittal ,

Adding more points to Priyanka Dingra's post !! try this code on your first page i.e page1.jsp to redirect to page2.jsp


<portlet:renderurl var="clickRenderURL">
<portlet:param name="jspPage" value="/WEB-INF/view/page2.jsp" />
</portlet:renderurl>

<a href="<%=clickRenderURL %>">Click here</a>


Hope this may help you !!
Ajeet Singh, modificado hace 11 años.

RE: Passing data onClick to a different page

New Member Mensajes: 14 Fecha de incorporación: 27/03/12 Mensajes recientes
You can achieve that using actionUrl as well as renderUrl. In your requirement, you are supposed to display different data, hence it is required to fetch data from some sorces. Hence you should go through actionUrl. You can get the parameter values like actionRequest.getParameter("employeeId") or rederRequest.getParameter("employeeId") in action phase or render phase respectively.

<div>
                <a href="<portlet:actionURL>
                                <portlet:param name=" employeeId" value="<%=employee.getEmployeeId()%>"></a>
                                <portlet:param name="employeeName" value="<%=employee.getEmployeeName()%>" />
                                <portlet:param name="employeeAddress" value="<%=employee.getEmployeeAddress%>" />
                        "&gt;
                
       </div>


<div>
                <a href="<portlet:renderURL>
                                <portlet:param name=" employeeId" value="<%=employee.getEmployeeId()%>"></a>
                                <portlet:param name="employeeName" value="<%=employee.getEmployeeName()%>" />
                                <portlet:param name="employeeAddress" value="<%=employee.getEmployeeAddress%>" />
                        "&gt;
                
       </div>


I hope that, you will get through this.

Regards,
Ajeet Singh
Vaibhav Mittal, modificado hace 11 años.

RE: Passing data onClick to a different page

Junior Member Mensajes: 54 Fecha de incorporación: 16/07/12 Mensajes recientes
Thnxx subhash, priyanka and Sid for your replly.
Sid, aui-dialog will open a dialog box on the same page but my requirement is to open the details on a new page.
<portlet:renderURL> will open a new jsp for sure but in the same portlet on the same page. This will just replace the old jsp and calls the new jsp using doview method. The same can be achieved by calling edit mode programatically on click(by changing mode).

I want to open this new jsp on a new page (on click), the way window.open() do opens up a new window. If this can be achieved?
thumbnail
Rajeeva Lochana .B.R, modificado hace 11 años.

RE: Passing data onClick to a different page

Junior Member Mensajes: 67 Fecha de incorporación: 4/01/10 Mensajes recientes
Hi Vaibhav,

Place the attribute target="_NEW" inside the anchor tag to open content in new window.

Check the below example



<portlet:renderurl var="JSPURL">
.....
</portlet:renderurl>

or
<portlet:actionurl var="JSPURL">
.....
</portlet:actionurl>


<a href="javascript:void(0);" onclick="<%= JSPURL.toString() %>" target="_NEW">View </a>

Gwowen Fu, modificado hace 11 años.

RE: Passing data onClick to a different page

Expert Mensajes: 315 Fecha de incorporación: 27/12/10 Mensajes recientes
Use <liferay-portlet:renderURL> will take you to the page where the portlet is placed.
thumbnail
Zeeshan Khan, modificado hace 11 años.

RE: Passing data onClick to a different page

Expert Mensajes: 349 Fecha de incorporación: 21/07/11 Mensajes recientes
Vaibhav Mittal:
I have built a search portlet which shows result in a table. One column of that table contains view hyperlink.

Now what I want is, when someone clicks on that view link, data from the result table gets passed to the new page and display result according to the data I am passing to the new page. Here new page should be same but display different result on clicking of different view links.
If someone can guide me the further steps.

Thnxx & Regards,
Vaibhav Mittal



Hi Vaibhav...

how u created this search portlet...?? can us share this.....??
I also have to create this search box on top of the banner of liferay.....