Re: about struts-examples apache/struts-examples -> bean-validation example

2015-09-03 Thread Christoph Nenning
org" , Struts Users > Mailing List , > Date: 03.09.2015 11:38 > Subject: Re: about struts-examples apache/struts-examples -> bean- > validation example > > Hello, > > The bean-validation example works now, after adding jboss-logging-3.1.1.GA.jar > > I didn

Re: about struts-examples apache/struts-examples -> bean-validation example

2015-09-03 Thread Chris
Hello, The bean-validation example works now, after adding jboss-logging-3.1.1.GA.jar I didn't know I could use a jboss file jar with only Netbeans 7.3 and Apache Tomcat 7.0.34.So the java jar file influence the validation and the message errors directly on html page. PS : with the exclude_

Re: about struts-examples https://github.com/apache/struts-examples

2015-09-02 Thread Lukasz Lenart
JBoss is using its own logging layer http://stackoverflow.com/questions/12615566/java-noclassdeffound-error 2015-09-02 15:48 GMT+02:00 Chris : > Thank you, > so I added the right 4.3.1.Final version but I also need app-validation. > > Then I noticed that even if the application starts, unfortuna

Re: about struts-examples https://github.com/apache/struts-examples

2015-09-02 Thread Chris
Same things renamming 01/09/2015  10:46   827ÿ024 log4j-core-2.3(1).jarin 01/09/2015  10:46        827ÿ024 log4j-core-2.3.jar Le Mercredi 2 septembre 2015 16h09, Chris a écrit : I am using the files23/11/2013  17:55    43ÿ578 asm-3.3.jar 23/11/2013  17:55

Re: about struts-examples https://github.com/apache/struts-examples

2015-09-02 Thread Chris
I am using the files23/11/2013  17:55    43ÿ578 asm-3.3.jar 23/11/2013  17:55    38ÿ275 asm-commons-3.3.jar 23/11/2013  17:55    21ÿ503 asm-tree-3.3.jar 19/02/2014  16:21    69ÿ002 commons-fileupload-1.3.1.jar 04/04/2014  11:19   185ÿ140 commons-io-2.4.jar 10

Re: about struts-examples https://github.com/apache/struts-examples

2015-09-02 Thread Chris
Thank you, so I added the right 4.3.1.Final version but I also need app-validation. Then I noticed that even if the application starts, unfortunately the tests in the form are not controled. Everything happens as if there were no control !. See ... without parameters..Updated Information Y

Re: about struts-examples https://github.com/apache/struts-examples

2015-09-02 Thread Lukasz Lenart
2015-09-01 19:50 GMT+02:00 Chris : > Hello, > It seems there are some new examples in apache/struts-examplesFrom A to Z1 ) > bean-validation2 ) blank3 ) jboss-blanc4 ) mailreader5 ) > restful2actionmapper6) themes_override Yes 1) to show how to use the new Bean Validation Plugin 2-4) moved from

Re: about struts-examples https://github.com/apache/struts-examples

2015-09-02 Thread Christoph Nenning
, > Date: 01.09.2015 19:53 > Subject: about struts-examples https://github.com/apache/struts-examples > > Hello, > It seems there are some new examples in apache/struts-examplesFrom A > to Z1 ) bean-validation2 ) blank3 ) jboss-blanc4 ) mailreader5 ) > restful2actionmapper6)

about struts-examples https://github.com/apache/struts-examples

2015-09-01 Thread Chris
Hello, It seems there are some new examples in apache/struts-examplesFrom A to Z1 ) bean-validation2 ) blank3 ) jboss-blanc4 ) mailreader5 ) restful2actionmapper6) themes_override About 1 ) bean-validationIt seems we need 2 jar  ( validation-api-1.1.0.Final.jar and hibernate ? ) bean-validati

Questions about struts dev mode.

2009-12-14 Thread Gustavo Felisberto
I have added devmode to my struts.xml: . If I go to a action that is not maped I get a very detailed error message. But that is about it. For example in a jsp I have: But the action does not have any getter for the list. If I run

RE: Question about struts templates

2009-11-20 Thread Raghuveer.V
Alternatively if you want to do only in one page Regards, Raghuveer Vellanki -Original Message- From: Oscar [mailto:oscar.kalde...@gmail.com] Sent: Friday, November 20, 2009 5:06 AM To: Struts Users Mailing List Subject: Re: Question about struts templates Thanks for your answer

Re: Question about struts templates

2009-11-19 Thread Oscar
Thanks for your answer Burton. I didn't know how to do that but for others that could have that problem to the way to do this is the next: Declare a constant in struts.xml like this: Burton Rhodes escribió: Use the 'simple' theme. It just prints the HTML tag. On 11/19/09, Oscar wrote:

Re: Question about struts templates

2009-11-19 Thread Burton Rhodes
Use the 'simple' theme. It just prints the HTML tag. On 11/19/09, Oscar wrote: > Hi to all, i have a problem with struts 2 templates. The problem is that > when i put a s:submit in my jsp for example, it automatically creates a > div containing the submit and a new column in the table, and i don'

Question about struts templates

2009-11-19 Thread Oscar
Hi to all, i have a problem with struts 2 templates. The problem is that when i put a s:submit in my jsp for example, it automatically creates a div containing the submit and a new column in the table, and i don't want that, i only want only the button. Is there a way to tell struts that i don'

Re: About Struts Rest Plugin

2008-12-23 Thread Luis Gervaso
no comments? :( On Tue, Dec 23, 2008 at 3:05 AM, Luis Gervaso wrote: > I'm wondering why not the behaviour of the rest plugin is ... > > *For example* > > URL: > http://www.domain.com/myapp/restController/resource1/resource2/resource3/resource4/resource5 > > creates a mapping parent & child > > i

Re: About Struts Rest Plugin

2008-12-22 Thread Luis Gervaso
The reflection impl import java.lang.reflect.Method; import org.apache.struts2.convention.annotation.Action; import org.apache.struts2.convention.annotation.Result; public class RestAction extends HttpBaseAction { @Action(value="/rest/*", result...@result(name=HttpBaseAction.SUCCES

Re: About Struts Rest Plugin

2008-12-22 Thread Luis Gervaso
OK with convention plugin is possible to do code from RestAction @Action(value="/rest/*", result...@result(name=BaseAction.SUCCESS, location="/WEB-INF/content/rest-success.jsp")} ) public final String execute() { System.out.println(); System.out.println("PARENT : "

Re: About Struts Rest Plugin

2008-12-22 Thread Luis Gervaso
I have been trying to figure the solution, I'm using convention plugin and i need to map first every first child of http://www.domain.com/myapp/restController/to a "restaction" so http://www.domain.com/

About Struts Rest Plugin

2008-12-22 Thread Luis Gervaso
I'm wondering why not the behaviour of the rest plugin is ... *For example* URL: http://www.domain.com/myapp/restController/resource1/resource2/resource3/resource4/resource5 creates a mapping parent & child i.e: parentId: resource1/resource2/resource3/resource4 childId: resource5 these can be

Re: 2 newbie questions about Struts and JSP

2008-09-23 Thread UseTheFork
Hi Alberto, thank you for your answer !!! Very helpful !!! J. -- View this message in context: http://www.nabble.com/2-newbie-questions-about-Struts-and-JSP-tp19627021p19628686.html Sent from the Struts - User mailing list archive at Nabble.com

Re: 2 newbie questions about Struts and JSP

2008-09-23 Thread Alberto Flores
If you are developing using Tomcat (hopefully you are), consider reading the comments (and documentation) on the Jasper 2 JSP Engine. Particularly look here: http://tomcat.apache.org/tomcat-5.5-doc/jasper-howto.html Specifically, trying the flags "keepgenerated" will bring some light to your

2 newbie questions about Struts and JSP

2008-09-23 Thread UseTheFork
C) provide implementation of such 'JSP servlets'? Or does Strut (and Spring MVC) have nothing to do with this? Thanks, J. -- View this message in context: http://www.nabble.com/2-newbie-questions-about-Struts-and-JSP-tp19627021p19627021.html Sent from the Struts - User mailing list a

Re: [OT] Re: Newbie question about Struts HelloWorld example

2008-09-14 Thread UseTheFork
help anyway, J. -- View this message in context: http://www.nabble.com/Newbie-question-about-Struts-HelloWorld-example-tp19451760p19478209.html Sent from the Struts - User mailing list archive at Nabble.com. - To unsubscribe, e

[OT] Re: Newbie question about Struts HelloWorld example

2008-09-12 Thread Dave Newton
--- On Fri, 9/12/08, UseTheFork wrote: > I have managed to deploy another project two days > ago without any issue. The JSP pages worked fine. That doesn't require any additional web app libraries. > It could be a project configuration issue, I agree, > but I have checked that and I don't know w

Re: Newbie question about Struts HelloWorld example

2008-09-12 Thread UseTheFork
r your help, J. -- View this message in context: http://www.nabble.com/Newbie-question-about-Struts-HelloWorld-example-tp19451760p19463840.html Sent from the Struts - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: [

Re: Newbie question about Struts HelloWorld example

2008-09-12 Thread Dave Newton
--- On Fri, 9/12/08, UseTheFork wrote: > I asked: >> Is it being deployed? > I can't find the common jar in the App server installation directory. > I will open a ticket with Netbeans Nabble. This is [most likely] not a NetBeans issue, either, it's a project configuration and/or deployment issue

Re: Newbie question about Struts HelloWorld example

2008-09-12 Thread UseTheFork
> Is it being deployed? I can't find the common jar in the App server installation directory. I will open a ticket with Netbeans Nabble. Thank you for your help, J. -- View this message in context: http://www.nabble.com/Newbie-question-about-Struts-HelloWorld-example-tp19451760p19463

Re: Newbie question about Struts HelloWorld example

2008-09-12 Thread Dave Newton
--- On Fri, 9/12/08, UseTheFork wrote: > I have a library called commons-loggin in my project: Is it being deployed? > I had to fiddle with the Web Pages directory structure in > the project and create a Classes sub-directory to match the > requirements mentioned on > http://struts.apache.org/2.

Re: Newbie question about Struts HelloWorld example

2008-09-12 Thread UseTheFork
/docs/simple-setup.html. Could this be the source of my issue? Thanks, J. -- View this message in context: http://www.nabble.com/Newbie-question-about-Struts-HelloWorld-example-tp19451760p19462329.html Sent from the Struts - User mailing list archive at Nabble.com

Re: Newbie question about Struts HelloWorld example

2008-09-12 Thread Dave Newton
--- On Fri, 9/12/08, UseTheFork wrote: > You will notice in my struts.xml that devMode has been set > to true. However, I still don't get anything new in my > Glassfish Logs.> BUT, I have noticed some issues when > I start Glassfish: > > http://www.nabble.com/file/p19457690/Log%2BList.png Loo

Re: Newbie question about Struts HelloWorld example

2008-09-12 Thread UseTheFork
, J. -- View this message in context: http://www.nabble.com/Newbie-question-about-Struts-HelloWorld-example-tp19451760p19457690.html Sent from the Struts - User mailing list archive at Nabble.com. - To unsubscribe, e-mail:

Re: Newbie question about Struts HelloWorld example

2008-09-12 Thread Jeromy Evans
UseTheFork wrote: When I refresh my browser with http://localhost:8080/tutorial/HelloWorld.action, I do not get any WARNING or SEVERE kind of messages in the Glassfish Logs. I only get more of the above. I have also checked for CONFIG, FINE, FINER, FINEST messages, but I don't get any. The Glass

Re: Newbie question about Struts HelloWorld example

2008-09-12 Thread Dave Newton
--- On Fri, 9/12/08, UseTheFork wrote: > i) I don't know what devMode is, can you explain? http://struts.apache.org/2.x/docs/devmode.html Without any more information it's essentially impossible to help. You'd be better served by posting your web.xml and struts.xml files here; I'm assuming they

Re: Newbie question about Struts HelloWorld example

2008-09-12 Thread UseTheFork
in Console is works fine, which make me think that Glassfish is working fine !!! Thank you for your time, J. -- View this message in context: http://www.nabble.com/Newbie-question-about-Struts-HelloWorld-example-tp19451760p19455428.html Sent from the Struts - User mailing list archive

Re: Newbie question about Struts HelloWorld example

2008-09-12 Thread Dave Newton
--- On Fri, 9/12/08, UseTheFork wrote: > I have no idea why it does not work. Can anybody help? Give > tips? Pointers? Could it be a config issue? ... Sure, it could be a config issue. Is there anything in the logs? Do you have devMode turned on? Dave -

Newbie question about Struts HelloWorld example

2008-09-12 Thread UseTheFork
. -- View this message in context: http://www.nabble.com/Newbie-question-about-Struts-HelloWorld-example-tp19451760p19451760.html Sent from the Struts - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: [EMAIL

Re: Question about Struts 2 Flow Control

2008-01-31 Thread Laurie Harper
d'. I would suggest trying a simple test app to experiment with these workflows and coming back with specific questions. It's difficult to generalize about Struts equivalents to the features of an unfamiliar framework :-) L. ---

Re: Question about Struts 2 Flow Control

2008-01-30 Thread WongTseng
#x27;re just displaying a non-form page, but you could always use > > SimpleFormController if you needed it. > > > > I'm not seeing that kind of behavior in Struts 2. I'm not saying it's > > required functionality, but I certainly appreciated it in Spring MVC

Re: Question about Struts 2 Flow Control

2008-01-30 Thread Musachy Barroso
preciated it in Spring MVC. > > Is it there and I'm not seeing it? How would you control the request like > this? > -- > View this message in context: > http://www.nabble.com/Question-about-Struts-2-Flow-Control-tp15190024p15190024.html > Sent from the Struts - User maili

Question about Struts 2 Flow Control

2008-01-30 Thread claym
it in Spring MVC. Is it there and I'm not seeing it? How would you control the request like this? -- View this message in context: http://www.nabble.com/Question-about-Struts-2-Flow-Control-tp15190024p15190024.html Sent from the Struts - User mail

Re: question about struts 2 and table layout

2008-01-16 Thread Dave Newton
--- "Wei, Mei" <[EMAIL PROTECTED]> wrote: > [...] is there a way to arrange the table into two columns. You'll want to explore themes and templates [1]. The nutshell version is that you'll probably want to either (a) use the "simple" theme on your elements or (b) modify a template. The default t

question about struts 2 and table layout

2008-01-16 Thread Wei, Mei
Hi, I am wondering in the Validation example quiz-ajax.jsp (which is in the struts 2.0's tutorial showcase http://www.planetstruts.org/struts2-showcase/showcase.action), is there a way to arrange the table into two columns. That means to make field "name" and "age" on the same row. Here is

Re: about struts, xml and xslt

2007-12-03 Thread Laurie Harper
logancillo wrote: Good days people, I need your help and experience. Could you recommend me some way to do some xslt work? Something as the tag xmlTemplate that has MyFaces in which you can provide the xml in brute and the xsl in brute and the result is html, xhtml, etc... I could use any thing,

about struts, xml and xslt

2007-12-03 Thread logancillo
are librarys used in systems in production, better. thx a lot -- View this message in context: http://www.nabble.com/about-struts%2C-xml-and-xslt-tf4935381.html#a14126590 Sent from the Struts - User mailing list archive at Nabble.com

Re: about Struts 2.0.9 portlet example ...

2007-10-24 Thread Nils-Helge Garli Hegvik
Any alternatives to ajaxtags? > >> >> > >> >> regards, > >> >> Giovanni > >> >> > >> >> > >> >> - > >> >> To unsubscribe, e-ma

Re: about Struts 2.0.9 portlet example ...

2007-10-24 Thread Guillaume Bilodeau
i >> >> >> >> >> >> ----- >> >> To unsubscribe, e-mail: [EMAIL PROTECTED] >> >> For additional commands, e-mail: [EMAIL PROTECTED] >> >> >> >> >> > >> >

Re: about Struts 2.0.9 portlet example ...

2007-10-22 Thread Nils-Helge Garli Hegvik
ajaxtags? > >> > >> regards, > >> Giovanni > >> > >> > >> - > >> To unsubscribe, e-mail: [EMAIL PROTECTED] > >> For additional commands, e-mail: [EMAIL PROTEC

Re: about Struts 2.0.9 portlet example ...

2007-10-22 Thread Guillaume Bilodeau
L PROTECTED] >> For additional commands, e-mail: [EMAIL PROTECTED] >> >> > > ----- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > >

Re: about Struts 2.0.9 portlet example ...

2007-10-18 Thread Nils-Helge Garli Hegvik
Hi! If you're thinking of the struts2-portlet application, you need to install it into a portlet container to test it. However, ajax is not yet built into the portlet framework. Nils-H On 10/18/07, Giovanni Azua <[EMAIL PROTECTED]> wrote: > hi all, > > I managed to see the examples in the portle

about Struts 2.0.9 portlet example ...

2007-10-18 Thread Giovanni Azua
hi all, I managed to see the examples in the portlet webapp demo (there is no index page) but I didn't see any portlet anywhere ... so I am curious as if to there is at all an AJAX portlet control delivered with Struts 2? Lack of portlets in S2 and AJAxification of displaytag would be the two

RE: about struts.

2006-09-07 Thread Gaurav Jain
:48 PM To: struts-user@jakarta.apache.org Subject: about struts. How can i implement connection pooling in struts. What will be the server.xml? and what the things i would have to do.Give the code. - To unsubscribe, e-mail: [EMAIL

Re: about struts.

2006-09-07 Thread Manfred Wolff
Hi. That's a little bit OT. The connection pool should be part of the tomcat configuration (or an other servlet engine). The server.xml may be a good part, better you place a xml into the $CATALINA_HOME/conf/Catalina/localhost folder such as: Then you are able to configure a connec

RE: about struts.

2006-09-07 Thread RoseIndia.net Help
-Original Message- From: amit fulambarkar [mailto:[EMAIL PROTECTED] Sent: Thursday, September 07, 2006 12:48 PM To: struts-user@jakarta.apache.org Subject: about struts. How can i implement connection pooling in struts. What will be the server.xml? and what the things i would have to

Re: about struts.

2006-09-07 Thread Jerome Gagner
WoW. On 9/6/06, amit fulambarkar <[EMAIL PROTECTED]> wrote: How can i implement connection pooling in struts. What will be the server.xml? and what the things i would have to do.Give the code. - To unsubscribe, e-mail: [EMAI

about struts.

2006-09-07 Thread amit fulambarkar
How can i implement connection pooling in struts. What will be the server.xml? and what the things i would have to do.Give the code.

RE: Question about Struts validator

2006-06-28 Thread mosho
David, Thanks a lot! I understood the whole concept now. It's working perfectly!!! Thanks again! Rosh -- View this message in context: http://www.nabble.com/Question-about-Struts-validator-tf1851247.html#a5089649 Sent from the Struts - User forum at Nabbl

RE: Question about Struts validator

2006-06-28 Thread David Friedman
Rosh, > I want to use struts validator and just control > validation manually. Why do I need saveErrors() > method and what does it do? Isn't the validator > does all that. I am little confused. If you are going to call the validation manually, then you will have to perform the same steps the val

RE: Question about Struts validator

2006-06-28 Thread mosho
or letting me know about making validate false in config file. Thanks. Rosh -- View this message in context: http://www.nabble.com/Question-about-Struts-validator-tf1851247.html#a5087526 Sent from the Struts - User forum at Nabble.com. --

RE: Question about Struts validator

2006-06-27 Thread David Friedman
example. I recommend you review it again before you consider my suggestions so you can see how my suggestions mirror much of what is shown in her examples. Regards, David -Original Message- From: mosho [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 27, 2006 5:18 PM To: user@struts.apache.or

Re: Question about Struts validator

2006-06-27 Thread Wendy Smoak
On 6/27/06, mosho <[EMAIL PROTECTED]> wrote: Thanks David and Wendy for your help but it doesn't seem to work. I added manually validate in my execute method. It still validates if I directly enter the url. ... --Struts config part-- You need to set validate="false" in the actio

RE: Question about Struts validator

2006-06-27 Thread mosho
alidate( mapping, request ); } return mapping.findForward("success"); ---JSP file--- . . -- View this message in context: http://www.nabble.com/Question-about-Struts-validator-tf1851247.html#a5074256 Sent from th

RE: Question about Struts validator

2006-06-27 Thread mosho
alidate( mapping, request ); } return mapping.findForward("success"); ---JSP file--- . . -- View this message in context: http://www.nabble.com/Question-about-Struts-validator-tf1851247.html#a5074217 Sent from th

RE: Question about Struts validator

2006-06-27 Thread David Friedman
in the past, I thought I would emphasize the point for you. :) Regards, David -Original Message- From: Wendy Smoak [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 27, 2006 4:27 PM To: Struts Users Mailing List Subject: Re: Question about Struts validator On 6/27/06, mosho <[EMAIL PRO

Re: Question about Struts validator

2006-06-27 Thread Wendy Smoak
On 6/27/06, mosho <[EMAIL PROTECTED]> wrote: If I call validate method manually, can I still use validator framework and use the input attribute in the config file to display the errors? I need to validate only if form is submitted by clicking on a button. If, yes can you show me with an exampl

RE: Question about Struts validator

2006-06-27 Thread mosho
validate method in Action class, execute method. Thanks Rosh -- View this message in context: http://www.nabble.com/Question-about-Struts-validator-tf1851247.html#a5073203 Sent from the Struts - User forum at Nabble.com. - To

RE: Question about Struts validator

2006-06-26 Thread David Friedman
onday, June 26, 2006 4:20 PM To: user@struts.apache.org Subject: Question about Struts validator Hi All, I want to validate a form by using struts validator, it is working fine. It validates the form if I click submit button, and it also validates the form if I pass it as a url for example: http:

Question about Struts validator

2006-06-26 Thread mosho
directly entering the url. How can I handle this situation? Thanks for your help! Rosh -- View this message in context: http://www.nabble.com/Question-about-Struts-validator-t1851247.html#a5054174 Sent from the Struts - User forum at Nabble.com

Re: about struts latest version

2006-02-16 Thread Gary Feidt
Please go to: http://struts.apache.org/ >>> [EMAIL PROTECTED] 2/15/2006 11:22:53 PM >>> Hi what is the latest version of struts.what are the new features added to this - To unsubscribe, e-mail: [EMAIL PROTECTED] For additiona

about struts latest version

2006-02-15 Thread gomathi
Hi what is the latest version of struts.what are the new features added to this - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

About Struts

2006-01-30 Thread khan
ak <[EMAIL PROTECTED]> Date: Jan 31, 2006 7:26 AM Subject: Re: About Struts To: Struts Users Mailing List Hi Naveen, Please visit http://www.roseindia.net/struts Its very good tutorial for begineners Regards Deepak Kumar Naveen Sharma <[EMAIL PROTECTED]> wro

Re: About Struts

2006-01-30 Thread Kumar deepak
Hi Naveen, Please visit http://www.roseindia.net/struts Its very good tutorial for begineners Regards Deepak Kumar Naveen Sharma <[EMAIL PROTECTED]> wrote: I am a beginner at struts. Can u plz tell me the basics of Struts -

About Struts

2006-01-30 Thread Naveen Sharma
I am a beginner at struts. Can u plz tell me the basics of Struts

Re: Doubts about Struts-layout

2005-12-21 Thread Pazhanikanthan Periasamy
ailing List" To user@struts.apache.org cc Subject Doubts about Struts-layout Hi friends, Is struts layout is a dependable library to use. I am finding many difficulties to implement it. so is it a reliable one to

Doubts about Struts-layout

2005-12-21 Thread Sony Thomas
Hi friends, Is struts layout is a dependable library to use. I am finding many difficulties to implement it. so is it a reliable one to use ? sony - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-ma

Re: question about Struts html tags and Javascript getElementById

2005-08-22 Thread Sudhaker Raj
This works in IE, Hope this helps. Thanks. var checkMe = function(thisForm) { alert(thisForm.elements['uploadedFiles[0]'].value); return false; }; On 8/22/05, Dave Newton <[EMAIL PROTECTED]> wrote: > Gordon Hu wrote: > > > > > > > > I was asking as a subtle hin

Re: question about Struts html tags and Javascript getElementById

2005-08-22 Thread Ross Gibb
According to the docs, http://struts.apache.org/userGuide/struts-html.html#file, the html:file tag will render and id tag with the attribute styleId. Also, when I use getElementById I just call it on the document. So what I think you are trying to do is so: styleId="uploadedFiles1" accept="

Re: question about Struts html tags and Javascript getElementById

2005-08-22 Thread Dave Newton
Gordon Hu wrote: I was asking as a subtle hint that there is nothing with an id of "uploadedFiles" making your JavaScript not do what you want it to. On 8/22/05, Dave Newton <[EMAIL PROTECTED]> wrote: Gordon Hu wrote: I am trying to set up a Javascript function like the followi

Re: question about Struts html tags and Javascript getElementById

2005-08-22 Thread Gordon Hu
On 8/22/05, Dave Newton <[EMAIL PROTECTED]> wrote: > > Gordon Hu wrote: > > > >accept="image/jpg, image/jpeg"> > > I am trying to set up a Javascript function like the following: > > document.form.getElementById("uploadedFiles"); > >Any ideas? > > > > > What does the generated file up

Re: question about Struts html tags and Javascript getElementById

2005-08-22 Thread Dave Newton
Gordon Hu wrote: accept="image/jpg, image/jpeg"> I am trying to set up a Javascript function like the following: document.form.getElementById("uploadedFiles"); Any ideas? What does the generated file upload HTML look like if you view source? Dave ---

question about Struts html tags and Javascript getElementById

2005-08-22 Thread Gordon Hu
I am having difficulties referencing struts html tags through Javacript. I am trying to validate 10 file upload boxes to see if the user has at least uploaded 1 file and also to validate the extension of the file (.jpg). ..and so on I am trying to set up a Javascript function like t

Re: Opinion about Struts layout

2005-08-02 Thread starki78
Hi Boris, thank you very much for your offer. Certainly you can send me a link or screenshots my mail is [EMAIL PROTECTED] Currently we are in an evalution phase... Have a nice day Saluti Starki > starki78 wrote: > > >thanks Borislav for your answer! > > > > > > > > > > I can provide you some s

Re: Opinion about Struts layout

2005-08-02 Thread Borislav Sabev
starki78 wrote: thanks Borislav for your answer! I can provide you some screenshots from 2 applications that I work on - they are not finished, but may be can give you some ideas about the power of struts-layout. And I have a friend who did some "miracles" with struts-layout, but he re

Re: Opinion about Struts layout

2005-08-02 Thread starki78
thanks Borislav for your answer! -- Initial Header --- >From : "Borislav Sabev" [EMAIL PROTECTED] To : "Struts Users Mailing List" user@struts.apache.org Cc : Date : Tue, 02 Aug 2005 09:01:46 +0200 Subject : Re: Opin

Re: Opinion about Struts layout

2005-08-01 Thread Borislav Sabev
starki78 wrote: Do you think this framework is stable and good? I have tested it and my first impression is not bad. Is there someone who uses it for its purposes? Ciao Christian Hi Christian, I use struts-layout from 4-5 months, and it saves a lot of develompent time. One of the best fe

Opinion about Struts layout

2005-07-31 Thread starki78
Do you think this framework is stable and good? I have tested it and my first impression is not bad. Is there someone who uses it for its purposes? Ciao Christian Libero Flat, sempre a 4 Mega a 19,95 euro al mese! Abbonati subito su

RE: [OT] Survey - Tell me what you think about Struts.

2005-05-02 Thread Barnett, Brian W.
May 01, 2005 2:28 PM To: Struts Users Mailing List Subject: Re: [OT] Survey - Tell me what you think about Struts. On 01/05/05 13:13 Simon Chappell wrote: >>What is it that bugs you the most about development with Struts? > > Trying to work with the struts-config.xml without a ded

Re: [OT] Survey - Tell me what you think about Struts.

2005-05-01 Thread Adam Hardy
On 01/05/05 13:13 Simon Chappell wrote: What is it that bugs you the most about development with Struts? Trying to work with the struts-config.xml without a dedicated editor. I have a small, three actions, project that I'm tinkering with and I figured that it was small enough that I didn't need to

Re: [OT] Survey - Tell me what you think about Struts.

2005-05-01 Thread Simon Chappell
James, Here's a couple: > What is it that bugs you the most about development with Struts? Trying to work with the struts-config.xml without a dedicated editor. I have a small, three actions, project that I'm tinkering with and I figured that it was small enough that I didn't need to worry and I

[OT] Survey - Tell me what you think about Struts.

2005-04-30 Thread James Mitchell
I'll be speaking at a developer conference this month and as an addition to the current outline, I would like to put together a list of common pitfalls (with respect to development with Struts) that developers find themselves battling on a daily basis. Is it misconfiguration? Is it constantly

Re: I must be missing something fundamental about Struts ...

2005-01-09 Thread Mark McWiggins
Thanks a bunch, that was it ... on to the next bug. :-) Curtis Taylor wrote: Hi Mark, Try changing the 'forward' to 'action' in your html:link tag: Sign in HTH, Curtis Mark McWiggins wrote: ... as I seem to get stuck on the simplest things. For example: Sign in Thanks, Mark McWi

Re: I must be missing something fundamental about Struts ...

2005-01-08 Thread Curtis Taylor
Hi Mark, Try changing the 'forward' to 'action' in your html:link tag: Sign in HTH, Curtis Mark McWiggins wrote: ... as I seem to get stuck on the simplest things. For example: Sign in Thanks, Mark McWiggins 425-369-8286 -

I must be missing something fundamental about Struts ...

2005-01-08 Thread Mark McWiggins
... as I seem to get stuck on the simplest things. For example: I have set up Eclipse with MyEclipse (thanks, Jim Barrows, for this recommendation) and just trying to get simple page flow working. But I don't seem to understand 'forwards', as I have a 2-line index.jsp: <%@ taglib uri="http://

Re: my testimony about Struts

2004-12-13 Thread t t
December 13, 2004 11:27 AM Subject: my testimony about Struts > No question. Struts is a wonderful tool to build websites. I just built > one: www.sportslovers.net using Struts. > Take a look if you are a sports lover or you are a web developer but still > doubt Str

Re: my testimony about Struts

2004-12-13 Thread James Mitchell
4 11:27 AM Subject: my testimony about Struts No question. Struts is a wonderful tool to build websites. I just built one: www.sportslovers.net using Struts. Take a look if you are a sports lover or you are a web developer but still doubt Struts. Sorry if this post bothered you. --

my testimony about Struts

2004-12-13 Thread t t
No question. Struts is a wonderful tool to build websites. I just built one: www.sportslovers.net using Struts. Take a look if you are a sports lover or you are a web developer but still doubt Struts. Sorry if this post bothered you. - Do you Y

RE: Q's about Struts release information and upgrade guides

2004-11-18 Thread David G. Friedman
iling List Subject: Re: Q's about Struts release information and upgrade guides David G. Friedman wrote: > Where are the release notes for Struts versions before 1.2.4? I just > received a question about code changes (via a private email) and cannot find > the changes from v1.0 to

Re: Q's about Struts release information and upgrade guides

2004-11-18 Thread Matt Bathje
David G. Friedman wrote: Where are the release notes for Struts versions before 1.2.4? I just received a question about code changes (via a private email) and cannot find the changes from v1.0 to 1.2.4 on the Strut site or the Wiki (not where I looked anyway). I would have expected to have found t

Q's about Struts release information and upgrade guides

2004-11-18 Thread David G. Friedman
Where are the release notes for Struts versions before 1.2.4? I just received a question about code changes (via a private email) and cannot find the changes from v1.0 to 1.2.4 on the Strut site or the Wiki (not where I looked anyway). I would have expected to have found this information on the re

Re: good book about struts

2004-10-05 Thread Robert Barksdale
+1 for Ted Husted's Struts in Action On Tue, 5 Oct 2004 10:48:41 -0400, Ricardo Andres Quintero <[EMAIL PROTECTED]> wrote: > How much u know about Struts? > I read programming Jakarta Struts of chuck Cavaness, OReally. > It is a very very nice book if u dont know anything a

RE: good book about struts

2004-10-05 Thread Ricardo Andres Quintero
How much u know about Struts? I read programming Jakarta Struts of chuck Cavaness, OReally. It is a very very nice book if u dont know anything about Struts. On Tue, 5 Oct 2004 16:45:44 +0100, Robin Mannering wrote > Hi, > > Can't say which is best as I have only read Struts

  1   2   >