2012-04-15 2 views

Répondre

3

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> 

action java:

@Override 
    public String render(PortletConfig portletConfig, RenderRequest request, RenderResponse renderResponse) 
      throws Exception { 

     request.setAttribute("lastSelectedCity", lastSelectedCity); 

     return "/html/next.jsp"; 
    } 
Questions connexes