Search:

Type: Posts; User: marian.venin; Keyword(s):

Search: Search took 0.01 seconds.

  1. Replies
    2
    Views
    1,544

    Update single form on a multiform page - Validator

    You should take special care for the validation phase:

    let's say you have this method:
    @RequestMapping(method = RequestMethod.POST)
    public String processSubmit(@RequestParam("formBeanName")...
  2. Replies
    6
    Views
    8,424

    Multiple @ModelAttribute ?

    let's say you have something like this(many form in page)

    @RequestMapping(method = RequestMethod.POST)
    public String processSubmit(@RequestParam("formBeanName") String formBeanName,...
  3. Replies
    2
    Views
    1,544

    Update single form on a multiform page

    I use one controller for all the forms I may have in a page.
    Every form has a hidden element name="formBeanName".
    In setupForm method(described below), I add all formBeans to session(I know when...
Results 1 to 3 of 3