Java-technology-based web component, managed by a portlet container that processes requests and generates dynamic content.
0
votes
0answers
11 views
how can i get the PortletRequest
My problem is to obtain PortletRequest from HttpServletRequest
I put this sentence:
PortletRequest request = (PortletRequest) HttpServletRequest.getAttribute();
What should i put into the ...
0
votes
0answers
18 views
Cast HttpServletRequest to PortletRequest
Hi i need some help for this problem i hope you guys can help me
I have this code:
protected void buildPdfDocument(Map modelo, Document document, PdfWriter pdfWriter, HttpServletRequest request, ...
0
votes
0answers
67 views
The import package cannot be resolved
I have a liferay portlet.
I've added some external libraries using maven.
In ide no errors, it can recognize, but
when deploying with ant , it says no such package and class
import pack.SomeClass;
...
0
votes
1answer
12 views
Smarty plugin-like functionality within Spring MVC possible?
I have a software design question. I am looking for Smarty plugins-like functionality in a Spring MVC app. Let me try to explain the case.
I am using Spring MVC to build a webapp and I want the ...
0
votes
1answer
20 views
Java spring portlet extends GenericPortlet how to autowire dependencies
I am using java - spring - portlet
I want to keep using my portlet as extend to GenericPortlet but i want to use spring dependency injections.
Currently i found the work around which is as follows ...
1
vote
1answer
17 views
Which portlet_2_0.tld is best to use?
We have many vendor specific "portlet_2_0.tld" files for portlet development. I am developing portlets with JSR 286 standard. I want my portlet to be deployed into all the portal servers. In case if i ...
0
votes
3answers
51 views
Liferay portlet - passing string array from actionRequest to renderPhase
I have a portlet on Liferay portal where I invoke action from a .jsp page. I would like to pass a String array to another .jsp page where this array will be displayed. However, no values are being ...
0
votes
1answer
12 views
Redirect from Portlets
I have this:
I try to redirect from portlet Historial to portlet Reclamos i'm doing this:
String pageUnique= "prueba.page.SRSC.Reclamos" ;
String portletUnique= ...
0
votes
1answer
18 views
Spring portlet Application. Form binding error messages not printed once form reloads
I have a nasty validation problem with this annotated Spring controller (relevant parts below):
@RequestMapping(value="view")
@SessionAttributes(types = UserChoice.class)
...
1
vote
3answers
45 views
Two portlets with same database
I am developing Liferay portal and I have one portlet which handles the administrator side of the portal and one the client side. The thing is that the clients cannot see the administrator page ...
2
votes
1answer
49 views
Use spaces into the tab titles with liferay tabs
I'm working with Spring MVC for portlets and liferay tabs. I'm having a problem to put spaces into the tab title. Let's say I want to define something like this inside a JSP:
<liferay-ui:tabs
...
0
votes
1answer
15 views
Dynamically use Datasource based on groupid Liferay 6.0
how to dynamically used different database based on groupid from logging user? For example is the group name XL I want to use database XLPortlet ,and if user iwth groupname Carto using Database ...
0
votes
0answers
13 views
Communication between Portlet Factory and JSR 168
First at all, sorry for my english
I have one portlet in Portlet Factory in one page in one .war and have another portlet in JSR 168 in other page and other .war
I need to Portlet Factory redirect, ...
0
votes
3answers
36 views
Can I display my own HTML in Liferay?
I am trying to display my own HTML file inside of a Liferay Portal.
Is this possible? If it is, how do I do it?
Thanks!
0
votes
1answer
15 views
Fields are null after portlet's form submission
I want to submit form with values and read them by action method in a portlet but the returned values are aways null. Here is my code, I am getting really desperate because I don't see anything wrong ...
0
votes
1answer
23 views
Adding portlets to page dynamically in liferay
I have a liferay page where it should have a freeform layout, but the number of portlets is not know before run time. How can i add protlets dynamically and sepcify their location in the page?
Thank ...
0
votes
2answers
25 views
Book for making a portlet using javascript [closed]
Can someone help me in finding a great book or great tutorial on how to make portlets using javascript.
0
votes
0answers
33 views
Hot deploy Liferay Maven portlet from Intellij Idea to Liferay Tomcat bundled
I'm developing a liferay portlet and I can't stand waiting for Maven to build the .war file and then copy that .war to LifeRay's auto-deploy directory to finally wait (again) till LifeRay finishes ...
0
votes
1answer
16 views
How many Portlet Context objects are created for differnt portlets are configured in Single Portlet application
I am new to Portlet Application development, I am having one doubt regarding PortletContext object. If multiple portlets are configured in single portlet application then How many PortletContext ...
0
votes
1answer
33 views
Liferay portlet issue with Richfaces 4.2 and PortletBridge 3.1
We have an application with numerous portlets for Liferay 6.0.6 using JSF1.2 with RichFaces 3.3.3.Final and PortletBridge 2.1.1 and everything was working fine. We decided to upgrade our stuff to JSF2 ...
-2
votes
0answers
39 views
HTML5 Portlets in Liferay [closed]
i can't find a proper tutorial on how to do build liferay portals in HTML5. would it be embedded in the jsp files? i don't know how to start.
I appreciate your help.
0
votes
1answer
24 views
Dynamic JqGrid with JSON Data gives me errors
The following code snippet is for developing jqgrid in portlets from this following link
http://www.liferay.com/community/forums/-/message_boards/message/16634036
I am unable to understand as I am a ...
0
votes
1answer
52 views
How to get Layout instance's URL in Liferay? What is friendly URL base?
Suppose I have Layout instance (in Java or JSP) and I want to get it's URL.
Layout represents a page. Page has "friendly URL" and I can get it by friendlyURL property.
But what about FULL url?
I ...
1
vote
1answer
67 views
Securing liferay portlets with spring security
I am currently working with a liferay portlets. Spring security is used on the Rendering layer( in jsp pages). However, it is not safe, because my dispatch controllers and services do not have any ...
1
vote
1answer
32 views
How to make portlets borderless by default in theme (Liferay)?
In default (classic) theme portlets are borderless despite the fact it is set "show borders" in their look and feel settings.
In my custom theme based on provided sources, I got bordered portlets by ...
0
votes
0answers
16 views
JSR286 Portlets on Websphere Portal server
This is one of the critical issue with portlet application.
Exception when clicking on a button to display data in new window OF browser. (** All browsers are of CITRIX platform.)
Investigation :
...
0
votes
3answers
71 views
serveResource called when i call actions
i use jQuery.ajax to call this method in my portlet :
serveResource(ResourceRequest request, ResourceResponse response)
The problem is when i try to call any action(ActionRequest ...
0
votes
0answers
29 views
Save in Database When Jquery Portlets Moved
I've made some code for a couple of portlets here: http://plnkr.co/edit/bD6z2vLprm09XmAR4yeP
I've been trying to add a feature, that when the user changes the order of the portlets, the script uses ...
-3
votes
1answer
15 views
Can i override a page title of portlet with JSP
I have a remote portlet page with some title 'a'. When the action is successful and forwarding to a JSP page i need to change the page title as 'b'. Can someone help me in fixing this. Thanks in ...
0
votes
0answers
15 views
Display number of logged in users in a weblogic portlet
I need to get the number of logged in users in weblogic portal and display in a portlet. How can I do that?
0
votes
1answer
35 views
JQuery AJAX Save sortable portlet items to database
I've tried solving my issue with the different posts but nothing seems to work.
I have the following code: http://plnkr.co/edit/pcfz33lzHz4wdehjGEuQ
I want to use AJAX to save the order of the two ...
0
votes
1answer
35 views
Liferay install portlet war from eclipse
Liferay porlets how to install from eclipse with maven.
I am following instructions from porlets in action book, i have maven configured eclipse project which i wants to install into liferay portal ...
1
vote
2answers
46 views
How to place company address and phone on each page of Liferay site?
What is expected way to place company address on each page of the site? In page footer, for example?
Should I create custom layout, theme or only portlets can know this data?
How to know this data ...
2
votes
1answer
24 views
Configuring Liferay Service Plugin
I have created a liferay service using the Service Builder framework. This service is used to fetch content from an external source, and once it is deployed, it is available to all portlets.
Is there ...
0
votes
0answers
18 views
How to distinguish parasitic doView calls
I found that my portlet's doView method is called 6 times including 5 times before any page requested by browser (upon portal restart). In other words 5 calls are not associated with any actual render ...
0
votes
1answer
32 views
How to obtain page's organization in liferay portlet?
How to obtain page's organization in liferay portlet correctly?
I tried:
Company. Is not an organization, but a portal instance.
Group. Is group of current user, not of current page.
UPDATE
I am ...
0
votes
0answers
39 views
Generic URL generation in portlet
We have Web content management(WCM) solutions and customers wanted to expose certain WCM contents to a portlet (note: the content pages in our WCM world are in some custom format, like customJSP). So ...
1
vote
1answer
42 views
Method to display list of available portlets in a portlet
Generally liferay has ADD option for displaying available portlets.
I want them to appear in a drop-down and that should be in a custom plugin-portlet, so I am searching in API which method is ...
1
vote
1answer
25 views
How to determine css-class-wrapper programmatically in Liferay?
liferay-portlet.xml file allows <css-class-wrapper> tag inside <portlet> tag.
Is it possible to determine it's content programmatically in portlet class or JSP?
0
votes
1answer
22 views
How to style tag inside all portlet instances?
How to select all portlet instances with CSS, not single instance? On my page I see outermost portlet tag as
<div id="p_p_id_promotion_WAR_promotionportlet_INSTANCE_mxMxCb1CjaeA_" ...
0
votes
1answer
27 views
Do portlet Java class instances relate as 1:1 with Liferay portlet web “instances”?
Liferay portlets can allow multiple "instances". Will these instances correspond 1:1 with Java class' init() method calls?
2
votes
1answer
85 views
How to programatically add liferay portlet Instance dynamically and install the portlet to the to dashboard page on click of a button?
I have a liferay portlet instance created dynamically and added to the layout programatically as follows
String portletId = objUtil.addPortlet("/prj/reports", "XYZPortlet_WAR_ecpmportlet", ...
0
votes
2answers
48 views
Liferay: Display Pentaho Report Designer HTML output in portlet
I'd like to integrate the HTML generated by the Pentaho Report Designer .prpt file into a portlet. The problem is that the HTML generated is a complete HTML page with <html>, <head> and ...
0
votes
1answer
75 views
Cannot call method of a portlet using <portlet:actionURL>
I've been trying to call a method 'signinAction' of the portlet using with the help of this little tutorial Developing Portlet with Multiple Actions.
But when I try to do it, I get Portlet is ...
1
vote
2answers
92 views
how to Pass Object between Portlet (IPC) Liferay portlet
I need help and it's really confusing.
I've tried to follow all example on the web about IPC - pass Parameter between portlet using event.
Here's my code if I only want to pass my attribute using ...
2
votes
1answer
51 views
best way for deploying a large javaee jsf application as a portlet
I am using liferay and glassfish application server to deploy my javaee jsf application as a portletIf having a small application about 5 mb the deploy is almost good which take time as 10 sec for ...
1
vote
1answer
54 views
How to render a portlet without rendering whole page. Liferay
I have two portlets at the same page. Portlet A does a very quick task, and Portlet B does a very slow task. Portlet B reads a parameter from A. If I make a change on A (with RenderURL), Liferay ...
0
votes
2answers
65 views
Access values displayed in Search Container in another jsp
I have a jsp where I display some data of some people say employees.
The data of each employee is displayed as a row.
I have made each row as a link so that when a user clicks on any row which gives ...
1
vote
1answer
31 views
Order of JSF portlets effect the rendering of ice:inputRichText
I have two seperate JSF portlet wars, both have their different liberaries and configuration. Single portlet on page is working fine, but when i place two portlets on same page and if the the portlet ...
0
votes
1answer
47 views
XForms - Separate Deployment with Portlets fails loading resources
Having problems with filtered xform resources – javascript, css and images. We tried to show xform in liferay portlet using OrbeonPortletXFormsFilter and Trampoline servlet writing to the response ...



