When you submit the form thru
Java script, will the validation frame work properly.. Any special things, that need to be taken into consideration..
Suppose I have a select one submit button and a oridinary button in my
JSP.
With submit button, validation works normally..
for the other button
we write some thing like this..
var form1 = document.abcForm;
form1.action ="XYZAction.do";
form1.submit();
Will the aboove one have the same effect as submit button as far as validation framewok is considered..
}