To begin, I am very new to Liferay, and may not have a clue what I'm doing even after reading the docs.
I'm trying to set up a custom jsp page inside of a Liferay portlet. The structure of my jsp is as follows:
<%@ taglib uri="http://java.sun.com/portlet_2_0" prefix="portlet" %>
<portlet:defineObjects />
<html>
<head>
<title>Credit Overview</title>
<link rel="stylesheet" type="text/css" href="../Client/css/creditview.css" />
<link rel="stylesheet" type="text/css" href="../Client/css/ecrisPortal_styles.css" />
//rest of css links and javascript files...
</head>
<body>
//lists, divs, etc.
</body>
</html>
This is all placed into my portlets view.jsp file, however, I cannot see anything being displayed in my portlet. All of my sources and mapping are correct but it seems I can't display anything but regular text in my portlet.
I'm using the most-current versions of Liferay plugins SDK and Eclipse.
Any ideas?
Cheers!
doView
method of your portlet? – Nick Rothliferay-portlet.xml
andportlet.xml
. Thanks. – Prakash Kportlet-class
inportlet.xml
? If so, you may need to callsuper.render(renderRequest, renderResponse);
in your class'srender
method. – Graham P Heath