This Project Has Not Released Any Files
上記の処理(FormをSubmitする)をボタンではなく下記のようなリンクを使用して同様の事を実現したい場合
この場合はorg.apache.wicket.markup.html.form.SubmitLinkを使用すると実現可能。
- public class SubmitLinkPage extends WebPage {
- private String input;
- public SubmitLinkPage() {
- Form form = new Form("form");
- add(form);
- form.add(new TextField("text",new PropertyModel(this, "input")));
- form.add(new Label("label",new PropertyModel(this, "input")));
- form.add(new SubmitLink("submitLink"));
- }
- }
また、下記のようにリンクがformタグの外側にある場合
Java側ではSubmitLinkのコンストラクタの第2引数にサブミットしたいFormオブジェクトを指定する。
- public class SubmitLinkPage extends WebPage {
- private String input;
- public SubmitLinkPage() {
- Form form = new Form("form");
- add(form);
- form.add(new TextField("text",new PropertyModel(this, "input")));
- form.add(new Label("label",new PropertyModel(this, "input")));
- //ここ重要!
- add(new SubmitLink("submitLink",form));
- }
- }