Re: Please help a Tiles problem

2003-04-06 Thread David Graham
Then you must be using an old pre-Struts version of Tiles. Sorry but I can't help you there. David From: Vernon [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] CC: [EMAIL PROTECTED] Subject: Re: Please help a Tiles problem Date: Sat, 05 Apr 2003 22:26:07 -0800 Where the

multipage form struts example

2003-04-06 Thread Dan Allen
Correct me if I am wrong, but if you are doing a multipage form you have to put the form into the session scope in order to retain it throughout the duration of the wizard, am I right? The only way to avoid it would be to place hidden fields in the second and third pages to hold the values so

Re: [OT] Documenting projects

2003-04-06 Thread Dan Allen
[EMAIL PROTECTED] ([EMAIL PROTECTED]) wrote: As far as requirements, you should pick up a Rational Unified Process book and look at designing use-cases with Word. ...or KWord or swriter (OpenOffice/StarOffice) Design, you can use visio ArgoUML or Dia Sorry, just had to plug for the open

idea for multipage form input attribute

2003-04-06 Thread Dan Allen
When creating a multipage validating form wizard, it can often be inconvient if the user makes an error on the 6th page and is taken all the way to page 1 to notify the user of the error. This happens because the input attribute on an action-mapping can only be a single page. The following would

basic struts 1.1 questions

2003-04-06 Thread Riyaz Mansoor
hi 1) in using dynaforms is it possible to set FormFile fields in the struts-config? if supported, what type would such a field be? java.lang.Class? 2) before i run my validator i want run all my actionform variables through a formatter. (eg: converting 2003/12/12 to 2003-12-12 and other

Re: url rewriting

2003-04-06 Thread SA
I think you can use html:rewrite. a href=test class=redbold onClick=TestWindow=window.open('html:rewrite page=?LINK.do? /','TestWindow', 'toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes, resizable=no, width=620,height=250,left=20,top=20'); return false;

Re: Best way for Database Exception Handling

2003-04-06 Thread Guido
I don't like your idea, Harish. What if your information systems (EIS) change? I mean, i.e. you are using a Oracle database, your requirements change and you must store your data in a XML file. SQLException has no sense in your controller layer. I personally prefer to catch my EIS exceptions

Re: SecurityFilter used with JBoss?

2003-04-06 Thread Max Cooper
Mick, I suspect that it wouldn't work, but I have never tested it. I offer my support if you want to try it out, but I don't have any experience with JBoss. -Max - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, March 20, 2003 12:09 AM Subject:

Re: Action change in form

2003-04-06 Thread Marcel Maré
Here is my code. Some how form is not submitted. Once i click the 'aboutus' link nothing is happening. Can some one tell me what is going on please. function setAction(action, link) { document.form.action = act; Shouldn't this be: action document.form.method = POST;