<s:form action="EmpAction">
<sj:autocompleter label="User Name (or) Login Name" name="loginName" autoComplete="true" list="userNameList" />
<s:submit />
</s:form>
これで、リストから取得したユーザー名をuserNameList
入力し、SUBMIT をクリックします。Struts2 Action クラスで値を取得します。しかし、 にないユーザー名を入力してuserNameList
SUBMIT を押すと、空の文字列しか表示されません。この文字列を Action クラスに取り込むにはどうすればよいですか。