• 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

struts 1.3 customized valid when

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


I have a form in struts 1.3 which is dynamically generated one and having indexed properties. I want to validate that form with struts validation framework.

Here is my situation :::

there is field called page which is should be even number certain person names.For this i have to create customize valid when in struts.
How to create the customized validwhen?


<field property="page" indexedListProperty="data"
depends="validwhenpage,integer,intRange">
<arg0 key="err.deliverable.page.valid"/>

<var>
<var-name>test</var-name>
<var-value>((data[].personname == 'ramesh') or (*this*???))</var-value>

</var>
<field>

 
ramesh nataraj
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
we can create Action Error object and save the error message in our action class and we can do the validation what ever we want

errors.add(ActionErrors.GLOBAL_MESSAGE, new ActionMessage("test","test1"); saveErrors(request, errors);
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic