Cendy Nguvy

Ranch Hand
+ Follow
since May 25, 2005
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Cendy Nguvy

Hi,

If you resolved this problem, can you tell me how please ?

Thank you in advance
17 years ago
Is it better with :
17 years ago
And add
before <logic:iterate>
18 years ago
Change

in


and add a getter and a setter method on collection designations in your ActionForm DesignationForm.
18 years ago

Originally posted by Juergen Schmitt:
Hi,
i had the same problem and found out, that its not enough, when the property name start only with one lower letter.

A property name like "bVarName" failed in my application.
After correcting it to two lower letters "baVarName" it worked.

Thats strange to me but who cares. Now it runs.



It doesn't work when the property name start only with one lower letter, like your property "bVarName", because one letter can't be consider as a word.

For Dolly Patel, its property is username.
In order to follow the rules, she has to change username in userName, because there is two words.
18 years ago
Try to use expression language as following :

18 years ago
As Mark says, you can use bean efine tag to place "i" into a scope.

18 years ago
This following doesn't work ?

18 years ago
Could you show us action-mappings definition for LifeAAction ?
18 years ago


You are using old validator-rules.xml file that is still defining validator rules using ActionErrors class which is deprecated since 1.2.x.

In validator-rules.xml, change "org.apache.struts.action.ActionErrors" to "org.apache.struts.action.ActionMessages" for each methodParams.
[ August 08, 2005: Message edited by: Cendy Nguvy ]
18 years ago
Hi,

Look the topic "Dynamic Select lists" at this url :

http://simple.souther.us/not-so-simple.html

It's a very good example of what you want to do.
18 years ago
Hi,

Try to put scope="session" instead of scope="request".
Maybe it's working better...
[ July 27, 2005: Message edited by: Cendy Nguvy ]
18 years ago
Hi,

In tag form-bean, replace form-propery by form-property.
18 years ago
Hi,

Yes, it's possible.
Code this following in your ActionForm :


[ July 23, 2005: Message edited by: Cendy Nguvy ]
18 years ago
Hi,

Try to modify in "validator-rules.xml" file for each method parameter "org.apache.struts.action.ActionErrors" to "org.apache.struts.action.ActionMessages".
18 years ago