Re: Global values as Tag parameters....How???

2001-07-07 Thread Craig R. McClanahan
On Wed, 27 Jun 2001, Jonathan wrote: I am creating a custom Struts tag which needs to search for an object in a HashMap. I want the 'key for the object in the HashMap to be some agreed upon, pre-defined, final global value defined in a file available to the whole application. How do I

RE: String indexing in beans (was: Global values as Tag parameters... .How???)

2001-07-02 Thread Rey Francois
To: '[EMAIL PROTECTED]'; '[EMAIL PROTECTED]' Subject: String indexing in beans (was: Global values as Tag parameters... .How???) For Rey's extensions to PropertyUtils, if I want to traverse my bean-object, I should be able to do something like this: property=report.matrix(Accounts).column

RE: Global values as Tag parameters....How???

2001-06-28 Thread Rey Francois
). Have look at it and you may be able to do what you want. Fr. -Original Message- From: Calvin Yu [mailto:[EMAIL PROTECTED]] Sent: 27 June 2001 20:51 To: [EMAIL PROTECTED]; Jonathan Subject: Re: Global values as Tag parametersHow??? I imagine you'll have to parse that attribute

Global values as Tag parameters....How???

2001-06-27 Thread Jonathan
I am creating a custom Struts tag which needs to search for an object in a HashMap. I want the 'key" for the object in the HashMap to be some agreed upon, pre-defined, final global value defined in a file available to the whole application. How do I refer to this value in a Tag attribute?

Re: Global values as Tag parameters....How???

2001-06-27 Thread Calvin Yu
, there's always this: html:userTargetedMessages messagesObjectKey="%= Globals.MESSAGES_OBJECT %"/ Calvin - Original Message - From: Jonathan To: [EMAIL PROTECTED] Sent: Wednesday, June 27, 2001 10:03 AM Subject: Global values as Tag parametersHow