Re: Calling OGNL static method with date argument issue

2010-11-30 Thread Li Ying
What is the error message? And, how did you defined the property "today"? Is it the same data type as the static method param? - To unsubscribe, e-mail: user-unsubscr...@struts.apache.org For additional commands, e-mail: user-h..

Calling OGNL static method with date argument issue

2010-11-30 Thread Ken McWilliams
In my jsp I have two dates ("today" and "expiryDate") the following works in the JSP: Now I created two static methods (In a Class called dateUtils.DateRange): /* Calling the following from my JSP: * * Works just fine... */ public static int numTest(int num) { return num + 5;