This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%@include file="/html/popup/init.jsp"%> | |
<% | |
String value = ParamUtil.getString(renderRequest, "parameter"); | |
%> | |
Your value is <%= value%> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%@include file="/html/auinode/init.jsp"%> | |
<aui:row> | |
<aui:row> | |
<input type="text" id="textColor" value=""/> | |
</aui:row> | |
<aui:row> | |
<aui:col span="3"> | |
<input type="button" id="redButton" value="Red"/> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%@include file="/html/auinode/init.jsp"%> | |
<aui:row> | |
<aui:row> | |
<span id="spanId"></span> | |
</aui:row> | |
<aui:row> | |
<input type="text" id="textId" value=""/> | |
</aui:row> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%@include file="/html/auinode/init.jsp"%> | |
<aui:row> | |
<aui:row> | |
<img src="<%= renderRequest.getContextPath() %>/images/cover.png" id="coverImageId"/> | |
</aui:row> | |
<aui:row> | |
<input type="button" id="toggleId" value="Toggle"/> | |
</aui:row> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%@page import="com.liferay.portal.kernel.dao.search.RowChecker"%> | |
<%@include file="/html/actions/init.jsp"%> | |
<% | |
PortletURL portletURL = renderResponse.createRenderURL(); | |
String portletURLString = portletURL.toString(); | |
StudentSearchContainer studentSearchContainer = new StudentSearchContainer(renderRequest, portletURL); | |
StudentDisplayTerms displayTerms = (StudentDisplayTerms)studentSearchContainer.getDisplayTerms(); | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%@page import="com.liferay.portal.kernel.dao.search.RowChecker"%> | |
<%@include file="/html/actions/init.jsp"%> | |
<% | |
PortletURL portletURL = renderResponse.createRenderURL(); | |
String portletURLString = portletURL.toString(); | |
StudentSearchContainer studentSearchContainer = new StudentSearchContainer(renderRequest, portletURL); | |
StudentDisplayTerms displayTerms = (StudentDisplayTerms)studentSearchContainer.getDisplayTerms(); | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%@page import="com.liferay.portal.kernel.util.WebKeys"%> | |
<%@page import="com.liferay.portal.kernel.dao.search.ResultRow"%> | |
<%@include file="/html/actions/init.jsp"%> | |
<% | |
StudentSearchContainer searchContainer = (StudentSearchContainer)request.getAttribute("liferay-ui:search:searchContainer"); | |
ResultRow row = (ResultRow)request.getAttribute(WebKeys.SEARCH_CONTAINER_RESULT_ROW); | |
Student student = (Student)row.getObject(); | |
%> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%@include file="/html/actions/init.jsp"%> | |
<% | |
PortletURL portletURL = renderResponse.createRenderURL(); | |
String portletURLString = portletURL.toString(); | |
StudentSearchContainer studentSearchContainer = new StudentSearchContainer(renderRequest, portletURL); | |
StudentDisplayTerms displayTerms = (StudentDisplayTerms)studentSearchContainer.getDisplayTerms(); | |
%> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%@include file="/html/actions/init.jsp"%> | |
<% | |
PortletURL portletURL = renderResponse.createRenderURL(); | |
String portletURLString = portletURL.toString(); | |
StudentSearchContainer studentSearchContainer = new StudentSearchContainer(renderRequest, portletURL); | |
StudentDisplayTerms displayTerms = (StudentDisplayTerms)studentSearchContainer.getDisplayTerms(); | |
%> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%@page import="com.liferay.portal.util.SessionClicks"%> | |
<%@include file="/html/init.jsp"%> | |
<% | |
String status = SessionClicks.get(request, "status", ""); | |
%> | |
<aui:row> | |
<div class='<%= status != null && status.equals("hide") ? "hide" : ""%>' id="divId"> | |
<img alt="chingovan.blogspot.com" src='<%= request.getContextPath() + "/images/chingovan.blogspot.com.png"%>'> |