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
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
> 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
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
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
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
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
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
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: {
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,
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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")) {
&
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
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
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/
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
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"
>
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
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
>
>
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
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
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
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
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
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
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
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
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
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
>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
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:
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 /
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
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
>
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
>
> ---
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
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.
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
>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
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
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
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
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
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
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
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
lik.
>
> __
> Do you Yahoo!?
> Yahoo! Small Business - Try our new resources site!
> http://smallbusiness.yahoo.com/resources/
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
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
---
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]
------
> 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]
> 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
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]
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]
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
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
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]
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]
--
> 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]
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
= "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
>
>
> 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]
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
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
---
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
---
> 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]
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.
> --
>
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
-- 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 '
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
> 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]
ol.createuser.lead"/>
>
> onclick="leadChecked(this)" tabindex="20" />
>
>
>
> function adminChecked(obj){
> if (!obj.checked)
> document.forms[0].isAdmin.value = "N";
> else
> docume
--
> 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]
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
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]
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
;
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>
--
Jeff Beal
Webmedx, Inc.
Pittsburgh, PA USA
-
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
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
-
> 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]
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
>
> 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]
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]
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]
; 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
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
---
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 - 100 of 233 matches
Mail list logo