Portlet URL Generation From AJAX Servlet
问题 I am trying to modify a portlet to load data for a table over AJAX because the WS calls take a ridiculous amount of time to complete. The table is basically an overview with one entry per table row and a link in each row to more detailed information on the entry. Here is how I am currently creating the URLs for each row in the table: <portlet:renderURL portletMode="VIEW" windowState="maximized" var="showURL"> <portlet:param name="id" value="${entry.ID}"/> </portlet:renderURL> I have created