This week's book giveaway is in the Agile and other Processes forum. We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line! See this thread for details.
I wanted to validate a input text field. I am using validation.xml to do this. This is what i have written in my validation.xml
This works fine.But the problem is,i should not get the error message once the page is loaded .I should get it only when i hit the submit button. How should i modify my validation.xml to do this.I should basically put some check to see whether the submit button is hit or not. Any help will be really useful. Thanks.
Zip Ped
Ranch Hand
Joined: Jul 26, 2005
Posts: 336
posted
0
Override the validate method and return null if the your submit button is not present in the request or is null(if present as a form parameter). If the submit button is pressed, return super.validate(arg0, arg1)
For e.g.
meena latha
Ranch Hand
Joined: Jan 24, 2005
Posts: 219
posted
0
Thanks for the reply.But when we are using the validation framework do we need to override the validation()..???
Zip Ped
Ranch Hand
Joined: Jul 26, 2005
Posts: 336
posted
0
I dont see the harm in overriding the validation method for the question you asked.
Alternatively, If you have two action classes - one when the page first loads(ViewAction class) and the other for submitting or CRUD operations(UpdateAction class) then you can set the validate="false" for the first class.
Luke Zechariah
Ranch Hand
Joined: Sep 27, 2005
Posts: 106
posted
0
No change needs to be done on the validation.xml. You need to have 2 actions in your struts-config.xml file.
The validate="false" makes it by pass validation on page load.
Luke.
meena latha
Ranch Hand
Joined: Jan 24, 2005
Posts: 219
posted
0
Thanks.I have only one Action class thats the problem....However i have modified my validation.xml this way.
But now i am getting the following error.
what i am all doing is setting a property value to true when the submit button is clicked.Then i am checking that in my validation.xml. Any suggestion is most welcomed. Thanks
[ July 10, 2006: Message edited by: meena latha ] [ July 10, 2006: Message edited by: meena latha ]
meena latha
Ranch Hand
Joined: Jan 24, 2005
Posts: 219
posted
0
sorry the error got resolved .The problem was the the end tag for <var-value> was </var-name>.But the validation is not carried out.
meena latha
Ranch Hand
Joined: Jan 24, 2005
Posts: 219
posted
0
Thanks to all.It is working.I modified the validation.xml .
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to
run our stuff on 16 servers instead of 3.