Hello, everyone!

I have a form that has validation and so on, but the main difference to 
ordinary forms is that my form does not contain it's submit button. It's 
located in a parent, in my case a web page.

I'm wondering how can I force the form submitting from the page. The code is

submitButton = new AjaxButton("submit_button) {
         protected void onSubmit(AjaxRequestTarget target, Form<?> form) {
                   myForm.processForm();
         }
};

The method processForm() in myForm just calls process();

But nothing happens, looks like I'm missing something...

Thanks,
Martin

Reply via email to