Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
こんにちは、チェックボックスを動的に作成しているので、リクエスト属性を<html:checkbox />タグに渡す方法を知りたいだけです。
<html:checkbox />
例: request.setAttribute("counter_1", false);
以下のコードスニペットで設定する方法。
<html:checkbox property=? />
ActionForm次のようなプロパティで作成する必要があります
ActionForm
public class YourForm extends ActionForm { private boolean counter; // getters, setters }
次に、struts 構成でフォームを宣言します。それとその後:
<html:checkbox property="counter" />