0
属性のプロファイルを持つオブジェクトを返すAjax呼び出しがあります。これらのプロファイルのコレクションを使用して<form:select>
で複数の値を選択するにはどうすればよいですか。複数の値をフォームで選択する方法:ajaxレスポンスを使用して選択する
$.ajax({
... // some omitted codes // ...
success : function(response) {
response.profiles // collection of profiles
}
<form:select id="profile" path="profiles"
items="${profilelist}" multiple="true" itemValue="id" itemLabel="type"/>