Re: FormDef [was Re: I remember now why I said I usually use my VO in my ActionForm]

2005-07-17 Thread Laurie Harper
Hubert Rabago wrote: On 7/16/05, Laurie Harper <[EMAIL PROTECTED]> wrote: I then fill the form in using a JSP tag if necessary (i.e. the first time the form is displayed, I call a tag to populate it). So will the techniques described in the article work with this scheme? It probably won't. F

Re: FormDef [was Re: I remember now why I said I usually use my VO in my ActionForm]

2005-07-17 Thread Hubert Rabago
On 7/16/05, Laurie Harper <[EMAIL PROTECTED]> wrote: > > 1) Given that FormDef is using DynaBeans / DynaForms under the covers, am I > right in assuming that form properties would need to be accessed with > expressings like ${EmployeeForm.map['address'].map['city']} outside of > Struts tags and si

RE: submenu collapsed

2005-07-17 Thread Folashade Adeyosoye
Are you using Struts Menu? -Original Message- From: wade han [mailto:[EMAIL PROTECTED] Sent: Sunday, July 17, 2005 9:58 PM To: user@struts.apache.org Subject: submenu collapsed We use template to create the dynamic left menu including main menu and submenu, but after I press the submenu

submenu collapsed

2005-07-17 Thread wade han
We use template to create the dynamic left menu including main menu and submenu, but after I press the submenu at the first time, the submenu collapsed, we want to keep the submenu expanded. Anybody has any idea about this? Thanks. Wade - S

Re: html-el:text styleId attribute issue

2005-07-17 Thread Wendy Smoak
From: "Tom Ansley" <[EMAIL PROTECTED]> I am getting the following error: [ServletException in:/jsp/camper/searchCriteriaCamperContent.jsp] /jsp/common/search/search_entities.jsp(160,6) According to TLD or attribute directive in tag file, attribute styleId does not accept any expressions' for t

html-el:text styleId attribute issue

2005-07-17 Thread Tom Ansley
Hi all, I am getting the following error: [ServletException in:/jsp/camper/searchCriteriaCamperContent.jsp] /jsp/common/search/search_entities.jsp(160,6) According to TLD or attribute directive in tag file, attribute styleId does not accept any expressions' for the following piece of jsp " pro

Re: ActionMessages vs ActionErrors in jstl

2005-07-17 Thread Grzegorz Stasica
Grzegorz Stasica wrote: hi, Basically I'd like to ask why I'm not able to access my messages stored in action from jsp. ActionMessages m=new ActionMessages(); m.add(ActionMessages.GLOBAL_MESSAGE,new ActionMessage("error.no_value")); saveMessages(request,m); in jsp I try this value="${reques

Re: pre populating

2005-07-17 Thread dumbQuestionsAsker _
Of course. http://www.theone.ru/lists/comp.lang.php/msg00111.html http://www.forum4designers.com/archive22-2005-1-176688.html http://www.aspfaq.com/show.asp?id=2235 http://www.experts-exchange.com/Web/WebDevSoftware/ColdFusion/Q_21322846.html To complete what I said, HTML specs allow it, but bro

Re: pre populating

2005-07-17 Thread Martin Gainty
Wasnt aware of any such restrictions with any Browser with respect to use of When you get the chance please forward the link which contains the information with respect to Client Browser (Opera vs IE vs Netscape) Regards, M- - Original Message - From: "dumbQuestionsAsker _" <[EMAIL PRO

[Tiles] No mapping error with the Spring MVC Framework

2005-07-17 Thread Vernon
After having a set of pages definited with Tiles, I add another page in the same fashion as the rest: and the "template", I get this no mapping error: org.springframework.web.servlet.PageNotFound.no

Re: Struts 1.2 v 1.3

2005-07-17 Thread netsql
What does 1.3 bring to the party? I know there will be with the composable request processor and commons chain integration. What other innovations are there in the new version? I think they also said Struts 1.3 will also be built using JDK 1.4 and to Servlet 2.3. So during evoltion, some th

Re: ActionServlet failing to load

2005-07-17 Thread Frank W. Zammetti
Cool, glad that did the trick! -- Frank W. Zammetti Founder and Chief Software Architect Omnytex Technologies http://www.omnytex.com On Sun, July 17, 2005 12:36 pm, Robin Mannering said: > Excellent, tried running that JSP and it revealed the true error: > > A missing jar file on the deployment

Re: ActionServlet failing to load

2005-07-17 Thread Robin Mannering
Excellent, tried running that JSP and it revealed the true error: A missing jar file on the deployment box. The jar is expected in tomcat/common/lib directory. I've added it to my application lib directory and the problem has disappeared. Thanks for your help Robin The error shown: 17-Ju

Re: ActionServlet failing to load

2005-07-17 Thread Frank W. Zammetti
Is there any chance struts.jar is simply not in the classpath? The stack trace seems to indicate your not even getting into Struts code, so its I think either (a) not finding the ActionServlet class or (b) failing during construction. The first seems far more likely. I suppose an easy way to tes

Re: pre populating

2005-07-17 Thread dumbQuestionsAsker _
After some more advanced googleling, I learnt this problem is due to browser's security. THE ONLY BROWSER SUPPORTING FILE INPUT IS OPERA, NO ONE ELSE :(. To conclude, that's not a struts problem. From: "Martin Gainty" <[EMAIL PROTECTED]> Reply-To: "Martin Gainty" <[EMAIL PROTECTED]> To: "Struts

Re: ActionServlet failing to load

2005-07-17 Thread Robin Mannering
Sure, I've just included the relevant bits I hope. The strtup serlvet loads just fine by the way.. web.xml snippet --- action org.apache.struts.action.ActionServlet config

Re: pre populating

2005-07-17 Thread Martin Gainty
the property you are instanting must of type org.apache.struts.upload.FormFile I guess I cant provide any specific help you unless the I see your code Martin- - Original Message - From: "dumbQuestionsAsker _" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]>; Sent: Sunday, July 17, 2005 11:1

Re: pre populating

2005-07-17 Thread dumbQuestionsAsker _
YourActionForm yourActionForm=(YourActionForm)form; yourActionForm.setSpecificField(thevaluefromtheFile); Yes I did but that only returns the file name, not the whole path, and im not able to populate the input with this only file name. The only solution I found is to populate a hidden with a

Re: pre populating

2005-07-17 Thread Martin Gainty
what values are the (Action/DynaAction)Form fields supposed to contain? what values does the file contain? what is the purpose of this file? Have you tried YourActionForm yourActionForm=(YourActionForm)form; yourActionForm.setSpecificField(thevaluefromtheFile); ??? Martin- - Original Message

Re: ActionServlet failing to load

2005-07-17 Thread Martin Gainty
Hard to decipher without knowing the 'root cause' can we see the contents of your web.xml index.jsp struts-config.xml M- - Original Message - From: "Robin Mannering" <[EMAIL PROTECTED]> To: Sent: Sunday, July 17, 2005 9:55 AM Subject: ActionServlet failing to load Hi all, I'm havin

ActionServlet failing to load

2005-07-17 Thread Robin Mannering
Hi all, I'm having a bizarre problem upon application startup where the ActionServlet is failing to load. This only happens on our deployment server, and the ActionServlet loads normally whilst on our dev machine. Does anyone have on ideas on the below error? I'd be very grateful for any

2 simple tutorials (handling dates, dynamic web tree)

2005-07-17 Thread Thomas Gaudin
Hi folks, I have written 2 online tutorials. They are not 'pure' struts tutorial (but appfuse ones, so they also deal with hibernate, xdoclet, ant..) but I think it can be of interest for some of you. The first one shows how to deal with java.util.date : http://www.thogau.net/page/thogau/tut

Re: [OT] documentation versions [was Re: actionservlet init-params]

2005-07-17 Thread Ted Husted
Initiatives like Maven [http://maven.apache.org/] are trying to provide a standard development and publication environement for open source projects, but many of us still insist on going our own way. Nature of the beast, I suppose. :) Between 1.0.2 and 1.1.0, we did flip-flop and post the GA docum

pre populating

2005-07-17 Thread dumbQuestionsAsker _
Hi everybody, Is there any mechanisme provided by struts to allow prepopulating inputs in the case of iterating Form which retrives beans values ?(It seems that in the best case FormFile only return the file name not the whole path) Thanks in advance. best regards, Dumbo :) ___