Re: Validator - how to check a checkbox - solution

2005-11-16 Thread Jeff Beal
On 11/15/05, Michael Jouravlev <[EMAIL PROTECTED]> wrote: > But then you rely on the undocumented feature/gotcha in BeanUtils. > What if the way the parameters are processed is changed in future > versions? I think that this approach of setting "false" as default is > useful not only for Validator

Re: Trouble with and params

2005-10-12 Thread Jeff Beal
On 10/12/05, Faisal Mahmoud <[EMAIL PROTECTED]> wrote: > I need to construct a table of files available for download. A file is > downloaded by hitting the /download.do?jobId=2 action. The info for > each row in the table is stored in an action form called > retrieveJobsFormBean. This actionform co

Re: changing log4J configuration during run time

2005-10-12 Thread Jeff Beal
> Abhay B Chaware > Tech Lead > KPIT Cummins Infosystems Ltd. > Daytime Ph. 763-574-5355 > Evening Ph. 763-786-1224 > > > > > Jeff Beal > <[EMAIL PROTECTED]To: Struts Use

Re: changing log4J configuration during run time

2005-10-12 Thread Jeff Beal
We have a "super-secret" (that is, not linked to) URL in our application that we can use to trigger a Log4J reload. We don't have to restart the server, but we also don't have to worry about the possibility of configureAndWatch() taking *any* cycles from our production box. (Since I put in this m

Re: Validation of input field requires SQL. Better to put it in Form or in Action?

2005-09-21 Thread Jeff Beal
In general, ActionForm validation is limited to the most basic input validation, mostly making sure that incoming strings can be parsed into a specific type. If you need to issue a SQL query to ensure valid data, that sounds like a business logic operation, and probably makes more sense in the Act

Re: action.do not found on this server

2005-09-02 Thread Jeff Beal
What does your struts-config look like? On 9/2/05, Emmanuel.Leguy <[EMAIL PROTECTED]> wrote: > Hello, > > Apache: 1.3.33 > Tomcat: 5.5 > Solaris 10 > modjk 1.2 > > I try this direct URI: > > https://myserver/path/action.do > > And if i haven't a session opened I get an apache 404 error: > > T

Re: [Friday] [somewhat-ajax-related] XMLHttpRequest scoping problems

2005-08-22 Thread Jeff Beal
I haven't actually tried having multiple simultaneous requests with this, but it's not using the global namespace, so it should work: submitRequest("../yourURL.html",processResponse); function submitRequest(url,handler) { var req = null; if (window.XMLHttpRequest) { // Non-IE browsers req

Re: How can I refer a control in javascript which hava a "." in its name

2005-08-18 Thread Jeff Beal
You also have the option of doing document.form[0]['myobject.subobject']. On 8/18/05, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > >property="myobject.subobject" styleId="subobject" .../> > > then get the field by using > > document.getElementById("subobject"); > > > Tony Sm

Re: {Spam?} Re: validate() not called haunts

2005-08-10 Thread Jeff Beal
addErrors() is a new method in 1.2.7. addErrors() and addMessages() are both valid, and both accept ActionMessages as arguments. For more on the difference between ActionErrors and ActionMessages, see http://wiki.apache.org/struts/ActionErrorsAndActionMessages. Also, please get rid of the 'Re: {

Re: multiple instances of one ActionForm

2005-08-10 Thread Jeff Beal
Could you just put all of your completed ActionForms in a session-scoped collection, then loop through that collection when the user clicks "Finish"? This isn't a standard procedure, to my knowledge, but it would be the first approach I would take given similar requirements. -- Jeff On 8/10/05,

Re: Can u help me...I have a problem related to struts.

2005-08-02 Thread Jeff Beal
Hopefully by now you've read the aforementioned JavaBeans specification. It does say that if the method name has two consecutive capital letters after get and set, the property name is not de-capitalized. So, for your method getSTitle, the property name should also be STitle. If the name of your

Re: JSF is the beginning of the end of Struts !!!

2005-07-29 Thread Jeff Beal
I think you're missing the point. There's no reason to include .php, .asp, .jsp, .xml, or .html in *any* page. They don't mean anything. Furthermore, any assumptions you make about the technology behind a site based on those extensions is simply not valid. (OT: I'll never forget the day my 7th

html:messages not displaying all messages

2005-07-29 Thread Jeff Beal
I have the following in an action class: msgs.add(ActionMessages.GLOBAL_MESSAGE, new ActionMessage("This is an Action-inserted error",false)); msgs.add(ActionMessages.GLOBAL_MESSAGE, new ActionMessage("So is this",false)); addErro

Re: JSF is the beginning of the end of Struts !!!

2005-07-29 Thread Jeff Beal
t they there to give > guidance to their content (Hacker subterfuge excluded)? > > It shouldn't detract from the idea of page "longevity", which would make a > for a better web. > > Christopher Marsh-Bourdon > www.marsh-bourdon.com > > > -Original Mess

Re: JSF is the beginning of the end of Struts !!!

2005-07-29 Thread Jeff Beal
Imagine a company currently using PHP who decides their app has grown past the constraints of PHP. It would be silly of them to change the file extension on their URIs just because they're changing technology, so they just map *.php to the Struts Servlet. Of course, if the web developers at that

Re: Struts-EL problem with struts-el-1.3.0-dev

2005-07-28 Thread Jeff Beal
On 7/28/05, Marco Mistroni <[EMAIL PROTECTED]> wrote: > > Hello Wendy, > I missed one point of your statement.. > > >> > > >Even if you're going to use an expression, the 'name' attribute should > >still > >evaluate to the _name_ of the bean, not the bean itself. > > http://struts.apa

Re: [OT] no-cache Actions (or tiles)

2005-07-27 Thread Jeff Beal
SourceForget - Put up your source and forget it! On 7/27/05, Frank W. Zammetti <[EMAIL PROTECTED]> wrote: > Agh. Troubleshooting a stupid PDF generation issue all day, my fingers > just won't cooperate :) > > sourceforget... Maybe the French mirror site? ;) > > -- > Frank W. Zammetti > Founder

Re: Actions forwarding to actions

2005-07-26 Thread Jeff Beal
See http://wiki.apache.org/struts/ActionChaining?highlight=%28actionchaining%29 On 7/26/05, Lance Semmens <[EMAIL PROTECTED]> wrote: > I'm a newbie to struts and I'm maintaining what I consider to be > spaghetti code. > There actions which forward to other actions and I'm getting lost a bit > lost

Re: STruts-EL

2005-07-26 Thread Jeff Beal
The second example would actually have to be: " /> -- Jeff On 7/26/05, Jeff Beal <[EMAIL PROTECTED]> wrote: > It's a lot more clear to compare the difference between: > > > > and > > "/> > > Especially considering the following scenar

Re: STruts-EL

2005-07-26 Thread Jeff Beal
It's a lot more clear to compare the difference between: and "/> Especially considering the following scenarios that "just work" in EL: -- What if "someObj" may be in more than one scope? -- What if there *is* no 'someObj'? -- What if someProp is null? -- Jeff On 7/26/05, Dave Newton

Re: submit form

2005-07-19 Thread Jeff Beal
Mnemonics are onlly non-standard because most people don't use them! Our application uses them all over the place, and our users love us for it. W3C accessibility guidelines strongly recommend heavy usage of mnemonics, also. That said, the standard modifier key for mnemonics is Alt, not Ctrl, an

Re: How do you create a Validator rule to compare 3 fields

2005-07-18 Thread Jeff Beal
Have you considered using radio buttons instead of checkboxes? From a UI standpoint, I think that would make more sense. That aside, I do not know of any easy way to do this sort of validation using the Validator plugin. I would override the validate method in my action form for just those prope

Re: URL Encoding

2005-07-18 Thread Jeff Beal
Have you looked at the html:link tag? (http://struts.apache.org/userGuide/struts-html.html#link) Link text On 7/18/05, Senthilrajan VS <[EMAIL PROTECTED]> wrote: > Hi All, > > I am calling the action directly using the hyper link, for example > /sample.do?table=test. The values for this action

Re: Forwarding in custom RequestProcessor

2005-07-14 Thread Jeff Beal
request.getRequestProcessor() --> request.getRequestDispatcher() On 7/14/05, Jeff Beal <[EMAIL PROTECTED]> wrote: > Calling just request.getRequestProcessor() effectively exits the - To unsubscribe, e-mail: [EMAIL PR

Re: Forwarding in custom RequestProcessor

2005-07-14 Thread Jeff Beal
Calling just request.getRequestProcessor() effectively exits the Struts environment since the request object doesn't know anything about struts_config.xml. You need to use the method and fields of the RequestProcessor instead. Try this: ActionForward expireForward = moduleConfig.findForwardConfi

Re: validation client-side. Problem with 2 submit buttons

2005-07-13 Thread Jeff Beal
Sorry -- missed the 'client-side' bit somehow. ;) On 7/13/05, Jeff Beal <[EMAIL PROTECTED]> wrote: > Set validation off in struts-config and call the Validate method from > within your Action: > > if (yourForm.getAction().equals("action_to_validate")) { &

Re: validation client-side. Problem with 2 submit buttons

2005-07-13 Thread Jeff Beal
Set validation off in struts-config and call the Validate method from within your Action: if (yourForm.getAction().equals("action_to_validate")) { ActionErrors errors = form.validate(/*params*/); if (errors.isEmpty()) { // all is good } else { saveErrors(errors); return mapping.f

Re: File upload using maxFileSize

2005-07-13 Thread Jeff Beal
IIRC from previous threads, setting the maxFileSize cannot prevent clients from submitting files larger than the limit you set, they can only abort the processing thereof. (This is not a Struts-specific limitation.) I believe the behavior you are seeing is the appropriate behavior. I think the a

Re: How to hide URL in Adress bar?

2005-07-13 Thread Jeff Beal
I don't think you even need to have two frames. Try just one frame: Your Site Title -- Jeff On 7/13/05, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > Hi > > The easiest way is to use frames. Have a framset of two frames stacked > vertically, with the first frame having 0 width/

Re: Validator, sutrts-config and form-property's types

2005-07-08 Thread Jeff Beal
I think that if Mark Galbreath were still around, he'd reply with "Validator sucks" or something similar. Basically, your statements below are all quite correct. I will add (in response to Point 1 below) that the BeanUtils library is what Struts uses internally to copy values from the request to

Re: Which request is used in Validation when the requirements aren't met?

2005-07-07 Thread Jeff Beal
If your input attribute identifies an Action instead of a JSP page, you can do whatever you need to do within that Action. On 7/7/05, Thai Dang Vu <[EMAIL PROTECTED]> wrote: > Hello everybody, > > This is my action declaration in struts-config.xml > > type="AddProviderAction" >

Re: help with a newbie topic-prepopulating a form

2005-07-06 Thread Jeff Beal
On 7/6/05, Michael Jouravlev <[EMAIL PROTECTED]> wrote: > On 7/6/05, Jeff Beal <[EMAIL PROTECTED]> wrote: > > Here's the last paragraph of the JavaDoc for the reset() method > > (emphasis in original): > > > > "This method is *not* the appropriate

Re: javascript

2005-07-06 Thread Jeff Beal
Use the action attribute instead of the page attribute in your tag. See http://struts.apache.org/userGuide/struts-html.html#rewrite for the tag documentation. -- Jeff On 7/6/05, Vijay K Anand <[EMAIL PROTECTED]> wrote: > Hi All > > I used the same way you have said > >

Re: help with a newbie topic-prepopulating a form

2005-07-06 Thread Jeff Beal
On 7/6/05, Michael Jouravlev <[EMAIL PROTECTED]> wrote: > > If by some chance you are, PLEASE do not advise the newbies to do this. > > This totally defeats the pupose of what ActionForms should be used for > > and will create all kinds of maintenance headaches, never mind the fact > > that it's re

Re: I18N by pages

2005-06-29 Thread Jeff Beal
aroslav Novytskyy <[EMAIL PROTECTED]> wrote: > Hello! > > Jeff Beal wrote: > > ... > > Have you considered locale-specific CSS files to give > > a different presentation to the same JSP page? > > ... > > I h

Re: Render an html button tag

2005-06-29 Thread Jeff Beal
I sent a couple of additional comments on this to Frank; I guess I should have paid more attention so they made it to the list, too. I won't belabor the points too much, but if you're interested in this question, section 17.13.2 "Successful Controls" (http://www.w3.org/TR/html401/interact/forms.ht

Re: Render an html button tag

2005-06-28 Thread Jeff Beal
Oddly, the element doesn't work well in Internet Explorer. (I just checked.) I have this form in an HTML page: Click Click 2 Now, if you click on one of the buttons, only that button and its value are supposed to be submitted. However, both are. Not only that, but the bu

Re: I18N by pages

2005-06-24 Thread Jeff Beal
n will be compatible with tiles :( > > What do you think about that? > > Best regards > Yaroslav Novytskyy > > > > Jeff Beal wrote: > > Probably your best bet would be to use a custom ActionMapping and > > override the findForward() method to return a Loca

Re: I18N by pages

2005-06-24 Thread Jeff Beal
Probably your best bet would be to use a custom ActionMapping and override the findForward() method to return a Locale-specific JSP page. On 6/24/05, Yaroslav Novytskyy <[EMAIL PROTECTED]> wrote: > Hi! > > This is exactli what I'd like to avoid and use l10n on pages level not > level of defined s

Re: [OT] Ajax - generic "processStateChange"

2005-06-21 Thread Jeff Beal
Event handlers have to be functions. When you write 'onreadystatechange = processStateChange(spanID);', the processStateChange() function is *immediately* executed, and the returned value is assigned to the event handler. This works great if your processStateChange returns a function, but if it r

Re: Float Validation not working

2005-06-20 Thread Jeff Beal
PROTECTED]> wrote: > It is float in the formbean. > > -Original Message- > From: Jeff Beal [mailto:[EMAIL PROTECTED] > Sent: Monday, June 20, 2005 12:11 PM > To: Struts Users Mailing List > Subject: Re: Float Validation not working > > On the form bean, what is

Re: Float Validation not working

2005-06-20 Thread Jeff Beal
On the form bean, what is the type of the field? (String, float, or Float) On 6/20/05, Dornback, Ken <[EMAIL PROTECTED]> wrote: > I have to validate a float. I can type anything or nothing in and never > see a validation problem when I set the depends attribute to "required, > float". The field

Re: Spooky Tiles problem

2005-06-07 Thread Jeff Beal
Write JSP comments as <%-- --%> On 6/7/05, andy wix <[EMAIL PROTECTED]> wrote: > I think the problem was due to my having an include file in the footer that > was commented out: > > > It seems this isn't the way to comment out stuff in jsp? Why it worked for > some pages and not others I still

Re: Newbie Q - Rendering drop down menu

2005-06-02 Thread Jeff Beal
>From http://www.w3.org/TR/html401/interact/forms.html#h-17.6: "size = number [CN] If a SELECT element is presented as a scrolled list box, this attribute specifies the number of rows in the list that should be visible at the same time. Visual user agents are not required to present a SELECT e

Re: Could someone on the dev team add link to mailing list on Struts site

2005-05-26 Thread Jeff Beal
It looks like they've made it easier than it had been in the past: >From the main menu, click "Mailing Lists" (under the "Community" subheading) Scroll down for links to multiple list archives and subscription information. On 5/25/05, Durham David R Jr Ctr 805 CSPTS/SCE <[EMAIL PROTECTED]> wrote:

Re: logic:iterate multiple collections

2005-05-24 Thread Jeff Beal
See http://struts.apache.org/faqs/struts-el.html. It includes a list of Struts tags whose functionality is covered by the JSTL. On 5/24/05, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > Thanks! That worked, and is also much easier to understand. > > This is probably a newbie question: How /

Re: Way of reading this mailing list as a heirachy

2005-05-19 Thread Jeff Beal
GMail also has a Basic HTML version that doesn't rely on JavaScript. Both versions use what they call a "Conversation View" to group messages. It's not really a hierarchy, but it does group all of the messages on a particular subject together. They're strictly in sequence, though, rather than be

Re: How to populate / validate dynaform?

2005-05-19 Thread Jeff Beal
I never use DynaForm myself, but it looks like there's no way to know which type of object should be going into the ArrayList. Maybe somebody else can figure out where to go from there. -- Jeff On 5/17/05, Shirish <[EMAIL PROTECTED]> wrote: > Dyna form >

Re: OT JSTL c:out

2005-05-11 Thread Jeff Beal
With JSTL 1.1 you can do: On 5/11/05, Brian McGovern <[EMAIL PROTECTED]> wrote: > I want to only print a portion of a string with JSTL c:out tag > > So if my string = "foobar", I want to know how to print out "xxxbar" > > Thanks > -B > > ---

Re: Sample Code for Desclarative Security in Struts

2005-05-09 Thread Jeff Beal
Solution 1: I don't believe there has to be any correlation between your web-resource-collections in your security-constraints and your servlet-mappings in web.xml. It seems to be perfectly valid to map *.do to ActionServlet (a single servlet-mapping) and have /admin/*.do and /user/*.do handled by

Re: Passing in key to or at runtime

2005-04-25 Thread Jeff Beal
Have you looked at and ? -- Jeff On 4/25/05, Greg Pelly <[EMAIL PROTECTED]> wrote: > Is it possible to use or to look up a key that is > not known until runtime (ie, stored in the request)? > > I have a results screen that will display a message that varies depending on > the query performed.

Re: html:link invalid for DTD???

2005-04-21 Thread Jeff Beal
Have you tried removing the slash so you just have 'action="welcome"'? I can never remember when the slash is required and when it is not allowed, but I think that for action "names" you don't use the slash. -- Jeff On 4/21/05, Scott Purcell <[EMAIL PROTECTED]> wrote: > As soon as I try and crea

Re: logic:iterate problem...

2005-04-21 Thread Jeff Beal
>From http://struts.apache.org/userGuide/struts-logic.html#iterate: collection: A runtime expression that evaluates to a collection <%=Globales.AreaPersonal.MODULOS_KEY%> probably evaluates to a String. What you need is name='<%=Globales.AreaPersonal.MODULOS_KEY%>' On 4/21/05, Lucas Bern <[EMA

Re: Dispatch Action Strangeness

2005-04-18 Thread Jeff Beal
Are you overriding execute() in either your Action or BaseAction? On 4/18/05, David Johnson <[EMAIL PROTECTED]> wrote: > Any further insights on this? It seems I'm missing something simple here... - To unsubscribe, e-mail: [EMAI

Re: what do you suggest me... JSTL or Struts tags

2005-04-14 Thread Jeff Beal
The taglib documentation for the bean and logic tag libraries both start with the following note: "Note: - Many of the features in this taglib are also available in the JavaServer Pages Standard Tag Library (JSTL). The Struts team encourages the use of the standard tags over the Struts specific ta

Re: accessing session variables in java Bean(In business logic Layer)

2005-04-14 Thread Jeff Beal
I'm not sure that web containers are required to create a new thread at the beginning of each request. Weblogic, for example, seems to keep a pool of available threads, and uses one of these threads to process each request. Using ThreadLocal with this type of app server would mean that whatever y

Re: accessing session variables in java Bean(In business logic Layer)

2005-04-14 Thread Jeff Beal
All of our application state (including the user) is kept in a separate "session" object in the business layer. (We use a stateful session EJB, but you could easily write your own POJO for this.) The web session, then, only has a reference to this session object (and a few other view-specific var

Re: html:link and RT expression

2005-04-13 Thread Jeff Beal
Try On 4/13/05, Scott Purcell <[EMAIL PROTECTED]> wrote: > In the below line, I am trying to insert some dynamic data (hello). But it > does not work. I have tried an expression, as you can see and it just prints > verbatim, and I tried a and it just prints out the > tag itself. > > How do

Re: Check errors from validator

2005-04-13 Thread Jeff Beal
and . On 4/13/05, Rodolfo García Esteban/CYII <[EMAIL PROTECTED]> wrote: > Hi, > > How I can known if I have obtained errors before printing them with > or > > Thanks > ____ > Rodolfo > -- Jeff Beal

Re: [HELP] tag can not write Japanese or Vietnamese

2005-04-13 Thread Jeff Beal
The tag, by default, escapes any HTML special (Bcharacters, like the '&' in your case. This can be an important (Bsecurity consideration to prevent malicious users of your site from (Binjecting HTML markup into your website. To override this behavior, (Bset filter="false": (B (B (B (BOn

Re: repopulating dropdown menus when validation errors occur

2005-04-13 Thread Jeff Beal
lik. > > __ > Do you Yahoo!? > Yahoo! Small Business - Try our new resources site! > http://smallbusiness.yahoo.com/resources/ > > - > To unsubscribe, e-mail: [EMAIL PROTECTED]

Re: Nested ActionForm Validation

2005-04-08 Thread Jeff Beal
so need to call when > submitting the form, can I call them by just using > getActionForm2.validate(mapping,request) within ActionForm1 validation > method or how can this be achieved? > > Thanks, > > Ciaran > > -- Jeff Beal Webmedx, Inc. Pittsburgh, PA USA ---

Re: Tag inside a cell.

2005-04-05 Thread Jeff Beal
ribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > -- Jeff Beal Webmedx, Inc. Pittsburgh, PA USA - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: How to submit a variable number of text fields ?

2005-04-05 Thread Jeff Beal
------ > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > -- Jeff Beal Webmedx, Inc. Pittsburgh, PA USA - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: URGENT HELP

2005-04-04 Thread Jeff Beal
> elements, including form controls. A few paragraphs before your link I meant 'below', not 'before'. -- Jeff Beal Webmedx, Inc. Pittsburgh, PA USA - To unsubscribe, e-mail: [EMAIL PROTECTED] For addi

Re: URGENT HELP

2005-04-04 Thread Jeff Beal
Does it even make sense to have a label on a hidden form control? -- Jeff Beal Webmedx, Inc. Pittsburgh, PA USA - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: [ot]CSS class name in bean:message ???

2005-04-04 Thread Jeff Beal
ly overridding the > td.style_external bold? .style_note_internal { font-weight: normal; } -- Jeff Beal Webmedx, Inc. Pittsburgh, PA USA - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: status messages in tag

2005-04-01 Thread Jeff Beal
On Mar 31, 2005 1:54 PM, Fumo, Vince <[EMAIL PROTECTED]> wrote: > ok follow-up and I'm sure this one will take 2 seconds to answer.. > > part 1) is there a JSTL way to do the ? -- Jeff Beal Webmedx, Inc

Re: MappingDispatchAction usage

2005-04-01 Thread Jeff Beal
s there something I'm missing for > just DispatchAction that would turn the validate off when I don't want it? > > Thanks, > > - Nic. > > ----- > To unsubscribe

Re: Form name collision

2005-03-31 Thread Jeff Beal
ands, e-mail: [EMAIL PROTECTED] > -- > > -- > If you have received this e-mail in error or wish to read our e-mail > disclaimer statement and monitoring policy, please refer to > http://www.drkw.com/disc/email/ or contact the sender. > -- > > - > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > -- Jeff Beal Webmedx, Inc. Pittsburgh, PA USA - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: EL Mystery

2005-03-23 Thread Jeff Beal
tents of your EL variable couldn't possibly have any harmful HTML in them, go ahead and use ${EL}. -- Jeff Beal Webmedx, Inc. Pittsburgh, PA USA - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: submit with the from the keyboard ??

2005-03-22 Thread Jeff Beal
-- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > -- Jeff Beal Webmedx, Inc. Pittsburgh, PA USA - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: ActionForm problem

2005-03-18 Thread Jeff Beal
I would still like to know what the root problem is here, the tag thing > aside. Why can't the ValidatorActionForm see my value "ssnOnFile" when I > change the type from boolean to String?? Just for future reference, anyo

Re: Correct Prepopulate Method

2005-03-17 Thread Jeff Beal
= "true" would give me > problems, but as soon as I changed it to false everything worked. > > Thanks for all of your patience reading all this. > -- Jeff Beal Webmedx, Inc. Pittsburgh, PA USA - To unsubscri

Re: create bean in action, and have display in jsp question

2005-03-17 Thread Jeff Beal
> > > Is what I described the proper way to handle this? And should it work > (currently, it is not populating the fields properly) > > I could use some advice if someone has been through this scenario. > > Thanks, > Scott > > -- Jeff Beal Webmedx, Inc. Pittsburgh, PA USA - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Displaying XL in browser

2005-03-17 Thread Jeff Beal
his e-mail in error, please notify the sender immediately by > return e-mail and delete it from your computer. > > ----- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > -- Jeff Beal Webm

Re: Correct Prepopulate Method (simple problem)

2005-03-14 Thread Jeff Beal
class consults the configuration classes and sees that the form for that action is also of type "YourFormBean". Since this form bean already exists, the form fields are populated with those values. Does that help? -- Jeff -- Jeff Beal Webmedx, Inc. Pittsburgh, PA USA ---

Re: Typical Struts development team and distribution of tasks?

2005-03-11 Thread Jeff Beal
being the same person! :-) We have three Java/Web/SQL developers. We all pretty much have our hands in all of the layers of the application code, from SQL and PL/SQL all the way to HTML and JavaScript. -- Jeff Beal Webmedx, I

Re: efficiency question

2005-03-11 Thread Jeff Beal
--- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > -- Jeff Beal Webmedx, Inc. Pittsburgh, PA USA - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Upper case converter in the view

2005-03-11 Thread Jeff Beal
r legally > privileged. It is intended solely for the use of the individual or entity > named on this message. If you are not the intended recipient, and have > received this message in error, please notify us immediately by reply e-mail > and then delete it from your system. > -- >

Re: Why Template Method instead of Strategy in Commons Chain?

2005-03-09 Thread Jeff Beal
On Wed, 9 Mar 2005 23:13:41 +0100, Leon Rosenberg <[EMAIL PROTECTED]> wrote: > > Just to clarify things: > > Gamma et all Design Pattern page 326: > Behavioral patterns | template method > > By defining some of the steps of an algorithm using _abstract_ operations... > > Which implies abstract

Fwd: Why Template Method instead of Strategy in Commons Chain?

2005-03-09 Thread Jeff Beal
-- Forwarded message -- From: Jeff Beal <[EMAIL PROTECTED]> Date: Wed, 9 Mar 2005 17:08:50 -0500 Subject: Re: Why Template Method instead of Strategy in Commons Chain? To: Dakota Jack <[EMAIL PROTECTED]> See http://c2.com/cgi/wiki?TemplateMethodPattern No mention of '

Fwd: Why Template Method instead of Strategy in Commons Chain?

2005-03-09 Thread Jeff Beal
Accidentally replied to only Jack. -- Forwarded message -- From: Jeff Beal <[EMAIL PROTECTED]> Date: Wed, 9 Mar 2005 14:23:35 -0500 Subject: Re: Why Template Method instead of Strategy in Commons Chain? To: Dakota Jack <[EMAIL PROTECTED]> Hey, thanks for the repl

Re: Why Template Method instead of Strategy in Commons Chain?

2005-03-09 Thread Jeff Beal
> destruction (destroy()). The "structure" of the class, with the > processing in the process(...) method is "shown" below. -- Jeff Beal Webmedx, Inc. Pittsburgh, PA USA - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Validation required in Checkbox

2005-03-09 Thread Jeff Beal
ol.createuser.lead"/>  > > onclick="leadChecked(this)" tabindex="20" /> > > > > function adminChecked(obj){ > if (!obj.checked) > document.forms[0].isAdmin.value = "N"; > else > docume

Re: struts html tags and form-beans

2005-03-08 Thread Jeff Beal
-- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > -- Jeff Beal Webmedx, Inc. Pittsburgh, PA USA - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Displaying a HashMap as a

2005-03-08 Thread Jeff Beal
Good point. I had forgotten about that class (added in JDK 1.4). On Tue, 08 Mar 2005 11:18:50 -0500, Nidel, Mike <[EMAIL PROTECTED]> wrote: > Note that there's also the java.util.LinkedHashMap which will > maintain whichever order you insert the values in. This gives -- Jeff

Re: Displaying a HashMap as a

2005-03-08 Thread Jeff Beal
ve > [EMAIL PROTECTED] > > ----- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > -- Jeff Beal Webmedx, Inc. Pittsburgh, PA USA - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: form-bean and persistent data in session scope

2005-03-08 Thread Jeff Beal
in session. > > Can you clarify me when does the form bean object would be removed in > session scope after it's use. > > RaghuVeer > -- Jeff Beal Webmedx, Inc. Pittsburgh, PA USA - To unsubscribe, e-mai

Re:

2005-03-08 Thread Jeff Beal
; > - > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > -- Jeff Beal Webmedx, Inc. Pittsburgh, PA USA -

Re: Key from ressource bundle not fount in , but found in ActionMessage

2005-03-05 Thread Jeff Beal
d > can't > find the entries as well. > > Lots of thanks in advance and kind regards, >Simon > > ----- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > -- Jeff Beal Webmedx, Inc. Pittsburg

Re: Tags in the body of other tags

2005-03-04 Thread Jeff Beal
I thought about this a bit more, and I think that you can use to help alleviate concerns about duplication: On Fri, 4 Mar 2005 12:13:53 -0500, Jeff Beal <[EMAIL PROTECTED]> wrote: > > > > > > > &g

Re: Tags in the body of other tags

2005-03-04 Thread Jeff Beal
- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > -- Jeff Beal Webmedx, Inc. Pittsburgh, PA USA - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Reset Method in ActionForm

2005-02-25 Thread Jeff Beal
opulate HTML select lists. It works fine, but I'm > wondering if this is the appropriate way to do such a thing? > > Thanks, > > evan > > -- Jeff Beal Webmedx, Inc. Pittsburgh, PA USA - To un

Re: AW: Hiding pages under WEB-INF

2005-02-23 Thread Jeff Beal
> > Control access to items for security and statistics for example > -- Jeff Beal Webmedx, Inc. Pittsburgh, PA USA - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Hiding pages under WEB-INF

2005-02-23 Thread Jeff Beal
it. You can do this for stylesheets, scripts, > whatever else you want. > -- Jeff Beal Webmedx, Inc. Pittsburgh, PA USA - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Hiding pages under WEB-INF

2005-02-23 Thread Jeff Beal
l it is not being picking up. Is there any > other configuration I need? -- Jeff Beal Webmedx, Inc. Pittsburgh, PA USA - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: JAVASCRIPT: Object expected

2005-02-23 Thread Jeff Beal
; INVALID-NON WORKING > > <script language="JavaScript" src="/includes/calendar.js" /> > > > > VALID-WORKING > > <script language="JavaScript" src="/includes/calendar.js" > -- Jeff Beal Webmedx, Inc. Pittsburgh, PA USA

Re: how to link to an url stored in actionform?

2005-02-23 Thread Jeff Beal
p. Can't find any doc on it. And > bean:write request the name of the bean to use. It does not seems to default > to the actionform. So the basic question is simply, where on hell is this > actionform?? > -- Jeff Beal Webmedx, Inc. Pittsburgh, PA USA ---

Re: how to link to an url stored in actionform?

2005-02-23 Thread Jeff Beal
th datas from an other action and i can't find how to get it back! -- Jeff Beal Webmedx, Inc. Pittsburgh, PA USA - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

  1   2   3   >