0
AlloyUIにはコンボボックスがありますか? LiferayのJSPファイルでどのように検索できますか?どのようにデータベースからそれを埋めることができますか?Lifereay JSPファイルでAlloyUIコンボボックスを見つける方法は?
AlloyUIにはコンボボックスがありますか? LiferayのJSPファイルでどのように検索できますか?どのようにデータベースからそれを埋めることができますか?Lifereay JSPファイルでAlloyUIコンボボックスを見つける方法は?
のjsp:
<aui:form action="<%=actionUrl%>" method="post">
<aui:select name="city" label="What city do you prefer?" id="selectedCity">
<aui:option value="Moskau" label="Moskau" selected="${lastSelectedCity=='Moskau'}"/>
<aui:option value="New Your" label="New York" selected="${lastSelectedCity=='New York'}"/>
<aui:option value="London" label="London" selected="${lastSelectedCity=='London'}"/>
<aui:option value="Berlin" label="Berlin" selected="${lastSelectedCity=='Berlin'}"/>
</aui:select>
</aui:form>
Javaのアクション:
@Override
public String render(PortletConfig portletConfig, RenderRequest request, RenderResponse renderResponse)
throws Exception {
request.setAttribute("lastSelectedCity", lastSelectedCity);
return "/html/next.jsp";
}