掲示板

Passing data onClick to a different page

11年前 に Vaibhav Mittal によって更新されました。

Passing data onClick to a different page

Junior Member 投稿: 54 参加年月日: 12/07/16 最新の投稿
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
11年前 に Sid Sket によって更新されました。

RE: Passing data onClick to a different page

New Member 投稿: 11 参加年月日: 12/02/20 最新の投稿
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
11年前 に Priyanka Dhingra によって更新されました。

RE: Passing data onClick to a different page

Liferay Master 投稿: 501 参加年月日: 11/12/20 最新の投稿
you can use
<portlet:renderurl></portlet:renderurl>
thumbnail
11年前 に Subhash Pavuskar によって更新されました。

RE: Passing data onClick to a different page

Regular Member 投稿: 234 参加年月日: 12/03/13 最新の投稿
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 !!
11年前 に Ajeet Singh によって更新されました。

RE: Passing data onClick to a different page

New Member 投稿: 14 参加年月日: 12/03/27 最新の投稿
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
11年前 に Vaibhav Mittal によって更新されました。

RE: Passing data onClick to a different page

Junior Member 投稿: 54 参加年月日: 12/07/16 最新の投稿
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
11年前 に Rajeeva Lochana .B.R によって更新されました。

RE: Passing data onClick to a different page

Junior Member 投稿: 67 参加年月日: 10/01/04 最新の投稿
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>

11年前 に Gwowen Fu によって更新されました。

RE: Passing data onClick to a different page

Expert 投稿: 315 参加年月日: 10/12/27 最新の投稿
Use <liferay-portlet:renderURL> will take you to the page where the portlet is placed.
thumbnail
11年前 に Zeeshan Khan によって更新されました。

RE: Passing data onClick to a different page

Expert 投稿: 349 参加年月日: 11/07/21 最新の投稿
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.....