Re: [OS-webwork] How to get values from multiple select
Also, I believe that the build in XWork converters support turning String[] -> List. Just a slightly nicer format. :) -Pat - Original Message - From: "Bernard Choi" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, September 17, 2003 2:38 AM Subject
Re: [OS-webwork] How to get values from multiple select
public class MyAction extends ActionSupport { private String[] multi; protected void doValidation() { if (multi == null) { addFieldError("multi", "no options selected."); } } public String doE