• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

validation with struts and tiles

 
Greenhorn
Posts: 8
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello,

I am using Struts and Tiles in a web application. This works all fine, however, there is a problem which I wanted to see solved.

I want to use the validation methods of the struts forms and actions, but this doesn't seem to cooperate well with tiles.

I'll give the example

a standard page might eg look like this :
-header.jsp (with eg a menubar, or a title, whatever)
-body.jsp (with the hml form)
-footer.jsp (with eg. some navigation buttons, or some general comments)

So in my body.jsp, I have a form and a submit button, this leads me to a struts action and form.
But when there is an ActionError thrown in the validation of the Form class then Struts only shows body.jsp, the header.jsp and footer.jsp are not shown anymore.

How can I solve this ?
 
Dieter D'haeyere
Greenhorn
Posts: 8
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
problem solved
it was just a stupid error
the solution popped up in my mind yesterday

In the input parameter I put my jsp file, but it has to be my tile definition of course :s
 
Ranch Hand
Posts: 1312
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
In validate solution , What type of Vlidation ? client side or server side ???
 
Dieter D'haeyere
Greenhorn
Posts: 8
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
My question was just about the form validation (eg. checking for empty input fields).
But problem solved.
reply
    Bookmark Topic Watch Topic
  • New Topic