Sorry, but what exactly do you mean with meta information?
Leon
> -Ursprüngliche Nachricht-
> Von: news [mailto:[EMAIL PROTECTED] Im Auftrag von Anil
> Gesendet: Freitag, 8. April 2005 02:34
> An: user@struts.apache.org
> Betreff: Meta Information in Action Form
>
>
> Hi All,
>
> Is i
Sorry, but what exactly do you mean with meta information?
Leon
> -Ursprüngliche Nachricht-
> Von: news [mailto:[EMAIL PROTECTED] Im Auftrag von Anil
> Gesendet: Freitag, 8. April 2005 02:34
> An: user@struts.apache.org
> Betreff: Meta Information in Action Form
>
>
> Hi All,
>
> Is i
Hi All,
Is it good approach to keep the meta information in action form ?
Thanks in advance.
Regards,
Anil.
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
IIRC, at the time when struts 1.1b2 was released, struts was bundling
commons jars built from tagged sources. There is a tag named
STRUTS_1_1_B2 in the validator sources. If you check out the source
files using this tag, you should get the sources corresponding to what
was bundled with struts 1.1b
>
> These packages all work the same: they take the entire result set, hold it
> in session memory, and page through it.
>
Not necessarily. Poorly designed implementations may do so but it is quite
easy to avoid those sorts of problems.
We use displaytag in conjunction with iBatis and it was eas
If displaytag uses HttpSession dumping the entire result set, it will
not work for me. I am developing for a highly distributed application
with requirements for thousands of users. There are like 15 app
servers clustered just on the app side (not including the DB.)
And yes, I do (unfortunately fo
Comments inline
-Original Message-
From: Rick Reumann [mailto:[EMAIL PROTECTED]
Sent: Thursday, April 07, 2005 2:41 PM
To: Struts Users Mailing List
Subject: Re: [OT] Open source paginator
N G wrote the following on 4/7/2005 3:31 PM:
> Does anyone know of some open source paginator packa
If you have a million row result set, you made a mistake. ;-)
IMO, there are two good ways to do this:
- Use something like iBATIS to do paginated lists
- Use a stored procedure to return the page from the dataset
Larry
On Apr 7, 2005 4:13 PM, Wiebe de Jong <[EMAIL PROTECTED]> wrote:
>
>
> If
I am custom developing it for my current project.
Wiebe
-Original Message-
From: N G [mailto:[EMAIL PROTECTED]
Sent: Thursday, April 07, 2005 3:27 PM
To: Wiebe de Jong
Subject: Re: [OT] Open source paginator
You mean you're working an on open source paginator that is similar to
the ones
There are lots of them:
http://displaytag.sf.net
http://valuelist.sf.net
http://jsptags.com/tags/navigation/pager/pager-taglib-2.0.html
http://jakarta.apache.org/taglibs/sandbox/doc/datagrid-doc/intro.html
and some useful articles:
http://raibledesigns.com/page/rd?anchor=there_s_a_new_sortin
-Oorspronkelijk bericht-
Van: Rick Reumann [mailto:[EMAIL PROTECTED]
Verzonden: donderdag 7 april 2005 22:50
Aan: Struts Users Mailing List
Onderwerp: Re: LazyLists and dynamic forms
The code posted was an attempt to help Stephane fix his problems. Your
comments are still very much apprec
Would it work for you if you changed your BaseActionUA class to extend
DispatchAction instead of Action and then in your execute you'll have to
do a bit of logic to decide if you want to act as your standard Action
(and in your case call executeAction method) or instead call super(...)
and thus
Take a look at the ActionDispatcher class attached to
http://issues.apache.org/bugzilla/attachment.cgi?id=12768 .
The javadoc of that class explains how it's used.
Hubert
On Apr 7, 2005 4:01 PM, Scott Purcell <[EMAIL PROTECTED]> wrote:
> Hello,
>
> In an application that I am coding, I had the n
Comments in line..
- Original Message -
From: "David Johnson" <[EMAIL PROTECTED]>
Sent: Thursday, April 07, 2005 7:46 PM
> Oy.
>
> I'm assuming that you're talking about the loadLocale() method within...
>
> org.apache.struts.util.PropertyMessageResources
>
> I see that inheritance
Hello,
In an application that I am coding, I had the need to subclass the Action class
in order to take care of some session handling.
So I subclass this type scenario in all my action classes:
##
abstract public class BaseActionUA extends Action {
public ActionForward execute(Act
Rick Reumann wrote the following on 4/7/2005 4:50 PM:
I also don't see what you are trying to do here...
values is an Object[] (which I also don't think will play well with
BeanUtils - I'd use List). How do you plan on entering in a String,
which is what input type='text' will do and have it pop
Richard Rozema wrote the following on 4/7/2005 4:20 PM:
Stephane,
The problem I am now facing is that for this instance of the searchForm to
still exist
later on in the both .jsp's and the ListAction, the form needs to be stored
into session
scope. If I don't store it there, a new instance will be
What you have looks OK to me - except in the Action the reference to
DynaValidatorForm - looks like your referencing the wrong class to me - the
actual ActionForm flavour should be a BeanValidatorForm - but IMO its better
to just cast it to a DynaBean, then your not fixed on an implementation.
Som
Stephane,
it seems we're both working on the same problem. I just today posted a
similar question. And like yours, it seems my question was far too vague, as
I received not one reply yet... Let's see if we can help each other.
As I stated in my question, I've found this
(http://www.developer.com/
Okay, makes sense, whew.
I'm still foggy on how to make the database connection. As it is now,
I'm doing it inside a plugin. Will the DB cnxns be available before it
loads my DatabaseMessageResourcesFactory class (which I identify in
the struts config)
...or will I need to change the time at whi
N G wrote the following on 4/7/2005 3:31 PM:
Does anyone know of some open source paginator package out there?
Something generic enough that you could stick collections into and it
would paginate it for you based on some criteria and expose methods to
nextPage(), previousPage() and stuff like that.
Does anyone know of some open source paginator package out there?
Something generic enough that you could stick collections into and it
would paginate it for you based on some criteria and expose methods to
nextPage(), previousPage() and stuff like that.
Thanks,
NG.
--
WHY go thru all that trouble...
all you have to do is, if you do have the "STATES_PROPERTIES_KEY" in
the application context, all you have to do is set the ListItem.value
in your java class DynaForm.
so when them page is displaying it would automatically detect what the
value is and auto select t
- Original Message -
From: "David Johnson" <[EMAIL PROTECTED]>
To: "Struts Users Mailing List"
Sent: Thursday, April 07, 2005 2:53 PM
Subject: Re: [resources] was: Re: RESEND: RE: Load message
resourcesfromDB???
James
I have a separate thread going on this, I apologize for that, but I'
That did it. Sorry, my first proj with jstl.. hah..
Thank you.
-Original Message-
From: Nic Werner [mailto:[EMAIL PROTECTED]
Sent: Thursday, April 07, 2005 3:00 PM
To: Struts Users Mailing List
Subject: Re: Simple JSTL Question
Did you try putting them all in one bracket?
SELECTED
Did you try putting them all in one bracket?
SELECTED
- Nic.
Brian McGovern wrote:
At least i think its simple. I have this code which doesnt error.. but also doesnt work.
" SELECTED >
This loops fine and i can c:out every single piece of that code, including the
session var.
At least i think its simple. I have this code which doesnt error.. but also
doesnt work.
"
SELECTED >
This loops fine and i can c:out every single piece of that code, including the
session var. The problem is that I cant get this to work
tried
SELECTED
tried
SELECTED
James
I have a separate thread going on this, I apologize for that, but I'll
summarize, and please excuse my ignorance.
Essentially, I understand your point , but if I may delve deeper,
I see that inheritance wise,
1. PropertyMessageResources extends MessageResources
2. PropertyMessageResour
Oy.
I'm assuming that you're talking about the loadLocale() method within...
org.apache.struts.util.PropertyMessageResources
I see that inheritance wise,
1. PropertyMessageResources extends MessageResources
2. PropertyMessageResourcesFactory extends MessageResourcesFactory
Logical.
So, I'l
You should extend MessageResources and clear the protected Map "formats"
with each call to your class.
--
James Mitchell
Software Engineer / Open Source Evangelist
Consulting / Mentoring / Freelance
EdgeTech, Inc.
678.910.8017
AIM: jmitchtx
Yahoo: jmitchtx
MSN: [EMAIL PROTECTED]
- Origi
The problem is that the collection is in a hashmap in the
propertiesMessageResource class. And it is private in there, so the only
real solution is your own custom MessageResource class.
Al
-Original Message-
From: David Johnson [mailto:[EMAIL PROTECTED]
Sent: Thursday, April 07, 2005 1:
David,
Well the answer is simple yet complex.
First off what you want to do is of course not quite possible right now.
MessageResources are loaded from a property file based on locale, and
are initialized in the loadLocale method.
Examination of that method shows that if the locale is already
Hi
This is sort of what I'm looking for as well. I sent a separate post
about it, in fact. My goal is the simple substitution of whatever
collection object type struts is using with one of the same type that
I have loaded fomr a database table.
I ***hate*** to tinker with the struts source code..
Hi all
I have a similar need to a topic entitled "Load Message Resources from
DB???" but only for ERROR messages, and quite honestly, I want the
simplest approach possible.
since my Error Messages and my other test fields currently share
"ApplicationResources.properties" I'm a little trapped thou
Runtime and non runtime...
The rt version allows the use of runtime expressions for attribute values while
the regular one allows the use of expression language.
Al
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: Thursday, April 07, 2005 12:22 PM
To: Struts
What is the difference between the two:
<%@ taglib uri="http://java.sun.com/jstl/core_rt"; prefix="c" %>
<%@ taglib uri="http://java.sun.com/jstl/core"; prefix="c" %>
- Glenn
"Brad Balmer" <[EMAIL PROTECTED]>
07/04/2005 01:17 PM
Please respond to "Struts Users Mailing List"
To:
Hello list:
I like to report that using today 20050407 shale.jar and
shale-spring.jar, shale and spring work togather as documented by Craig.
BaTien
DBGROUPS
==
Duong BaTien wrote:
Thanks. I will find time to do it.
BaTien
DBGROUPS
Craig McClanahan wrote:
Please try out
Did you define the tag at the top of the jsp?
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: Thursday, April 07, 2005 11:32 AM
To: Struts Users Mailing List
Subject: Re: Anxiously awaiting...
Tried it and just writes the out the string ${emply.firstname}
- Gl
From: "Greg Pelly" <[EMAIL PROTECTED]>
> Here's a better mask to use:
>
> mask
> ^\$?\d+(,\d{3})*(\.\d{2})?$
>
This is *perfect*! Thanks also to Hubert for reminding me about 'mask' in
the first place. :)
--
Wendy Smoak
---
Ahh that makes sense. Yes.
-Original Message-
From: James Mitchell [mailto:[EMAIL PROTECTED]
Sent: Thursday, April 07, 2005 11:45 AM
To: Struts Users Mailing List
Subject: Re: [resources] was: Re: RESEND: RE: Load message resources
fromDB???
For localized configuration, I'm thinking Tile
For localized configuration, I'm thinking Tiles and Validator config.
--
James Mitchell
Software Engineer / Open Source Evangelist
Consulting / Mentoring / Freelance
EdgeTech, Inc.
678.910.8017
AIM: jmitchtx
Yahoo: jmitchtx
MSN: [EMAIL PROTECTED]
- Original Message -
From: "Fogleson,
If you are doing a file upload, there is no way to know ahead of time how
big the file will be. In this case, instead of displaying a progress bar,
display the number of bytes received. There won't be any indication of how
long the operation will take, but at least you can see it working.
Wiebe
-
Craig McClanahan wrote:
Note that "empty" is an operator name in the EL language, used to
detect whether a property value is null or a zero length string. Try
using a different bean name.
How about "emply"?
;)
Dave
Craig
On Apr 7, 2005 8:23 AM, [EMAIL PROTECTED]
<[EMAIL PROTECTED]> wrote:
I
Niall Pemberton a écrit :
Its hard to help when all you say is "failed to make their examples work".
Posting snippets of relevant bits of your struts-config.xml, jsp etc would
help along with what actually happened.
Sorry for the lack of details, I know I was really too vague.
I am using Struts 1.2
Tried it and just writes the out the string ${emply.firstname}
- Glenn
Stéphane Zuckerman <[EMAIL PROTECTED]>
07/04/2005 11:39 AM
Please respond to "Struts Users Mailing List"
To: Struts Users Mailing List
cc: (bcc: Glenn Deschenes/NAT/CMHC-SCHL/CA)
Subj
Hi,
I have a object called Record as a form property.
Record has name, status etc as its properties.
In the jsp
I have
I want to validate the name as a required field in validation.xml file.
Is this the way to do it?
Can the field property have a value simi
James,
I'm with you here. I haven't dug much into commons-configuration, but it
seems to me there is little need for localized configuration
information. Maybe I'm just not thinking outside the box here, but the
configuration can be in virtually any locale. I can still configure
something for Engl
If you are using a container that supports 2.4 servlet spec, see this
page for your answer:
http://www.onjava.com/pub/a/onjava/2003/12/03/JSP2part2.html
If you are using a 2.3 servlet container:
1) Declare <%@ page isErrorPage="true" %>
2) Put this somewhere in the body of your page:
<%= exception
In sturts there is a valdation errors, I have a case that I need to add some
custom error message from other businsess object to the struts validation so
that these messages can be put into the same placeholder as other struts
validation errors and display on the same time.
Can you tell me wha
Like many of the Jakarta Commons projects, Commons Resources was based, in
part, from the initial work done in Struts and later copied over to commons
with the intent to one day use that library. This is what was done for
Beanutils, Digester, Validator, and more I'm sure.
(Craig, correct me if
But craig he used empLy :)
-Original Message-
From: Craig McClanahan [mailto:[EMAIL PROTECTED]
Sent: Thursday, April 07, 2005 11:03 AM
To: Struts Users Mailing List
Subject: Re: Anxiously awaiting...
Note that "empty" is an operator name in the EL language, used to
detect whether a pro
Note that "empty" is an operator name in the EL language, used to
detect whether a property value is null or a zero length string. Try
using a different bean name.
Craig
On Apr 7, 2005 8:23 AM, [EMAIL PROTECTED]
<[EMAIL PROTECTED]> wrote:
> Hi,
>
> I am anxiously awaiting for the thread between
Hi,
thanks for the input - I actually meant authorisation and not
authentication. I'll give it a try.
Tom
VAN BROECK Jimmy wrote:
Hi,
I wouldn't do authentication via Aop and interceptors,
but authorisation is perfectly feasible, that's what we do in our project using
Spring and aop.
Greetings
J
You can try this tool:
http://www.dumeter.com/
It's a free 30-day evaluation version - so you have plenty of time to test the
web application.
Mit freundlichen Grüßen
Thomas Nonnenmacher
T-Systems International GmbH
Systems Integration 1
Business Unit Manufacturing Solutions
Hausadresse: Fasan
Hello,
Ex.:
[code]
${emply.firstname}
[/code]
Have you tried to do just that ?
--
Stéphane Zuckerman
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
In short you have jspA
or
Continue to jsp B
now you create an action:
public class MyAction extends Action {
public ActionForward execute(ActionMapping mapping, ActionForm form,
HttpServletRequest request, HttpServletResponse response) throws
Exception {
String myValue
Try writing out
On Apr 7, 2005 11:23 AM, [EMAIL PROTECTED]
<[EMAIL PROTECTED]> wrote:
> Hi,
>
> I am anxiously awaiting for the thread between Stéphane, Rick and Niall to
> continue.
> I am experimenting with trying to do the same thing as Stéphane.
>
> In the mean time I am having one of th
Try extending the ExceptionHandler and trap the exception in there and
try to figure out what the exception is an instanceOf. From there you
can place a message in the request and forward to your error page, to
display the error
On Apr 7, 2005 11:20 AM, [EMAIL PROTECTED]
<[EMAIL PROTECTED]>
Hi,
I am anxiously awaiting for the thread between Stéphane, Rick and Niall to
continue.
I am experimenting with trying to do the same thing as Stéphane.
In the mean time I am having one of those mornings where nothing seems to
be going my way.
I am trying to use JSTL for the first time and the
It is certainly possible, however your old methodology could just as
easily be used by creating a baseAction class and then extending that
class. {
Al
-Original Message-
From: Tom Ziemer [mailto:[EMAIL PROTECTED]
Sent: Thursday, April 07, 2005 9:58 AM
To: Struts Users Mailing List
Subje
Where should I put the following codings?
Should I extend the class of ForwardAction?
Public ActionMapping execute(.) {
String myValue = request.getParameter("myRequestVal");
Request.setAttribute("myRequestVal", myValue);
Return mapping.findForward("success");
}
On Apr 7, 2005 11:21 PM, Fo
Even better use IBM's Page detailer.
http://www.alphaworks.ibm.com/tech/pagedetailer
-Original Message-
From: Benedict, Paul C [mailto:[EMAIL PROTECTED]
Sent: 07 April 2005 15:48
To: 'Struts Users Mailing List'
Subject: RE: [OT]Tool to find amount of data transfered in web application
Hi there,
is it possible to get exception information into a JSP file?
I'm catching all exceptions with a single entry in the web.xml:
java.lang.Exception
/error/errorException.jsp
Now I want to know, which exception was thrown, why and where
like the e.printstacktrace() method or
You don't need a form but you will have to create your own action...
something like this execute method in it will do the trick:
Action Execute method
Public ActionMapping execute(.) {
String myValue = request.getParameter("myRequestVal");
Request.setAttribute("myRequestVal", myValue)
I make use ForwardAction to go from page A to page B, just clicking a link.
e.g.
There are no form in between.
How can I set an attribute in page A so that I can get the attribute
back in page B?
Thank you very much!
-
To unsu
Hi,
I wouldn't do authentication via Aop and interceptors,
but authorisation is perfectly feasible, that's what we do in our project using
Spring and aop.
Greetings
Jimmy
-Original Message-
From: Tom Ziemer [mailto:[EMAIL PROTECTED]
Sent: donderdag 7 april 2005 16:58
To: Struts Users
Hi everybody.
I've just started working on an application using Struts. In my previous
projects my actions that needed authentication always had some common
class that they extended. Now I am wondering whether it would be
feasible to authenticate using AOP - writing interceptors for each method.
Hi
I need this tool to find out the bandwidth used when
using a green screen (clinet access) application and
bandwidht when using web application
Ashish
--- "Fogleson, Allen" <[EMAIL PROTECTED]>
wrote:
> You might check out jmeter
> (http://jakarta.apache.org/jmeter/index.html)
> it might be able
Stéphane, you got Niall's attention and he is THE MAN, when it comes to
this. So don't blow it! he he. Yes, give some specific examples of what
you are trying to accomplish (also give some explanation of the business
requirement - often times we assume things need to be done a certain way
when
You might check out jmeter (http://jakarta.apache.org/jmeter/index.html)
it might be able to do what you want. Don't remember off the top of my
head if it includes bandwidth reports but I think it does.
Al
-Original Message-
From: Ashish Kulkarni [mailto:[EMAIL PROTECTED]
Sent: Thursday
A quick way is to simply clear your browser's cache, make a hit to the
website, and then look at how much your cache has accumulated. This will
give you a rough estimate.
-Original Message-
From: Ashish Kulkarni [mailto:[EMAIL PROTECTED]
Sent: Thursday, April 07, 2005 10:46 AM
To: user@st
Hi
I have to make a report to display amount of data
transfered when using a web application, to find out
if it will work in existing networking (Intranet) and
there are no band width issues,
Is there a open source tool which will tell the amount
of data transfere in Intranet when accessing a web
s
Hey, thanks. I've been tryin' to get some help from the Tomcat folks,
too ... But no luck so far. Sorry I've been quiet on the list, I've had
my head in the sand, so to say.
-Original Message-
From: Hubert Rabago [mailto:[EMAIL PROTECTED]
Sent: Tuesday, April 05, 2005 9:40 AM
To: Struts
James,
How much different is Common Resources from Common Configuration? In
essence, a property file is really just a list of configuration pairs.
Thanks,
Paul
-Original Message-
From: James Mitchell [mailto:[EMAIL PROTECTED]
Sent: Wednesday, April 06, 2005 4:22 PM
To: Struts Users Mail
Niall Pemberton wrote:
Got a bit carried away and wrote a bit of an essay.
It's unlikely any open-source project documentation will be penalized
for providing too much information.
Thank you!
Dave
-
To unsubscribe, e-mail: [EM
Its hard to help when all you say is "failed to make their examples work".
Posting snippets of relevant bits of your struts-config.xml, jsp etc would
help along with what actually happened.
Niall
- Original Message -
From: "Stéphane Zuckerman" <[EMAIL PROTECTED]>
Sent: Thursday, April 07
I've got a DynaActionForm with an indexed property which I want to set the
dimensions for and possibly initialize (in a controller clas) before it is
actually loaded with the request values. Given that I want to put the form
into a Tiles tile, what's the best method of doing this?
I've already fou
Hmm, haven't tried this yet, but think using xmlhttprequest would be easier,
action 1 will call jsp 1 which has xmlhttprequest, javascript will then
forward the request to servlet while showing something flashy,
once everything comes back, replace the current html page with the text,
which is ba
A couple of ways to do this:
Method1 - Page1 submits to Action1 - on submitting hide main div enclosing
page, and show a div with "processing..." until Action1 responds with Page2
Method2 - Page1 submits to Action1. Action1 shows Page2 (Processing...), and
immediatly submits to Action2 which sho
Shiva Narayana wrote:
Asuthosh,
This one is different from my requirement...i want to display the
message when the action class loading ...but in this case it it is
displaying the message when the page is loading...
You want to have an intermediate page then. User clicks on link, you display
an int
<%@ include file="/common/TopInclude.jsp" %>
SelectServiceToCreateStorage.jsp
function cancelAction(){
document.location.href="createStorageOpenCycle.do?cancel=true";
}
function init () {
if (document.layers) {
Asuthosh,
This one is different from my requirement...i want to display the
message when the action class loading ...but in this case it it is
displaying the message when the page is loading...
regards
Shiva
On Apr 7, 2005 3:17 PM, Ashutosh Satyam <[EMAIL PROTECTED]> wrote:
> Hi Shiva,
> I'm enc
Thanks Asuthosh..
This will help me a lot
On Apr 7, 2005 3:17 PM, Ashutosh Satyam <[EMAIL PROTECTED]> wrote:
> Hi Shiva,
> I'm enclosing a sample JSP page which you can use
> for giving the appearance that it's waiting till
> the DB processing goes through.
>
> - - -
Apologies, I was remiss for not including the tags.
Christopher Marsh-Bourdon
www.marsh-bourdon.com
-Original Message-
From: Mohd Amin [mailto:[EMAIL PROTECTED]
Sent: 07 April 2005 10:46
To: Struts Users Mailing List
Subject: Re: Please wait page
that's a good one
- Original Mes
Hi Shiva,
I'm enclosing a sample JSP page which you can use
for giving the appearance that it's waiting till
the DB processing goes through.
- - - - - - - - - - - - wait.jsp - - - - - - - - - - - - - - - - -
|
that's a good one
- Original Message -
From: "Marsh-Bourdon, Christopher" <[EMAIL PROTECTED]>
To: "'Struts Users Mailing List'"
Sent: Thursday, April 07, 2005 5:15 PM
Subject: RE: Please wait page
If you ask travelocity nicely, I'm sure they will help. Why not pop them
an
email?
Chri
Hello,
I've read carefully the Struts' wiki page regarding indexed properties
and how to deal with them... but I failed to make their examples work
with LazyDynaBeans ...
Could someone put me back on track please ? I've managed to use
LazyLists in classical ActionForms, and if there is no other
If you ask travelocity nicely, I'm sure they will help. Why not pop them an
email?
Christopher Marsh-Bourdon
www.marsh-bourdon.com
-Original Message-
From: Shiva Narayana [mailto:[EMAIL PROTECTED]
Sent: 07 April 2005 10:13
To: user@struts.apache.org
Subject: Please wait page
hi all,
hi all,
I m developing an application using WSAD 5.1.1,Struts.
I m trying to fetch data from the database. I m writing the code in
action class...
i want to display a page while doing the processing
please help me.
the same logic is implemented in the site www.travelocity.com
--
Reg
Hi all,
Please send me the details regarding Netweaver. i just downloaded it
and try to run one simple application..Please help me
--
Regards
Shiva
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [E
hi,
i've a form bean with a map backed propery namend "orderedNumber". This
property returns the number of ordered items for a given product id, eg.
"getOrderedNumber(423)" returns the number of ordered items for the product
with id=423.
i want to validate the input (which is stored int the proper
91 matches
Mail list logo