Re: [OS-webwork] How to get values from multiple select

2003-09-17 Thread Pat Lightbody
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

2003-09-17 Thread Bernard Choi
public class MyAction extends ActionSupport { private String[] multi; protected void doValidation() { if (multi == null) { addFieldError("multi", "no options selected."); } } public String doE