RE: [OT] Re: Fired???? was...Re: Struts Books Recommendations [OT]

2005-07-08 Thread Nitesh Naveen
I agree with Craig here... He is quiet right about the mailing problem... I had been using my company id and have been told by them to unsubscribe from the due to the volume of messages coming in. Despite the volume if the mails had something to defend I could've done it. But the never ending flow

RE: Struts and Generics

2005-07-06 Thread Nitesh Naveen
Generics is a Java 5.0 feature... Don't think the features with 5.0 are introduced to Struts framework yet! Thanks Regards, Nitesh _ Disclaimer: Information contained and transmitted by this e-mail is confidential, proprietary, and legally privileged data of

RE: Question re html:select on the client

2005-07-06 Thread Nitesh Naveen
You could use JavaScript to submit the form on clicking the link. Have a hidden field to track which link is clicked. For e.g.. Use this function in the link... function clickLink(linkId) { document.formName.hiddenElementName.value=linkId; document.formName.submit(); } PS: you

RE: howto with validator

2005-07-05 Thread Nitesh Naveen
. But if i can't you suggest me to extends the plugin validator to include more specific rules, didn't you ? Rémi Le Mardi 5 Juillet 2005 07:45, Nitesh Naveen a écrit : You could do this with validator and indexed properties. When using indexed properties, JavaScript validations doesn't work

RE: Velocity Question

2005-07-05 Thread Nitesh Naveen
You could probably use format macro for formatting the number... http://www.atlassian.com/software/jira/docs/api/3.1.1/com/atlassian/jira/uti l/velocity/NumberTool.html http://www.opensubscriber.com/message/velocity-user@jakarta.apache.org/14631 34.html Thanks Regards, Nitesh

RE: ActionForm reset() and redirect.

2005-07-04 Thread Nitesh Naveen
Try putting in some logic where ever you are assigning the value... like if it is not set then set it to false... if it is already set don't touch it! HTH Nitesh -Original Message- From: Ben [mailto:[EMAIL PROTECTED] Sent: Monday, July 04, 2005 1:05 PM To: Struts Subject: ActionForm

RE: howto with validator

2005-07-04 Thread Nitesh Naveen
You could do this with validator and indexed properties. When using indexed properties, JavaScript validations doesn't work. However the server side validations does. This should suffice what you need... In case you have some validations that involve business logic, you could add more validations,

RE: deal with nested properties

2005-07-01 Thread Nitesh Naveen
You should probably have... form-bean name=questionnaireForm type=org.apache.struts.validator.DynaValidatorForm form-property name=page type=java.lang.Integer initial=1/ form-property name=firstName type=java.lang.String initial=Nom / form-property name=lastName