Re: [Stripes-users] Two way type conversion possible?

2011-11-13 Thread Janne Jalkanen
Date formatting is usually something that's done by the view component in a typical MVC model. I'm not sure that the Stripes ActionBean is the right place to solve this problem. What we usually do is that we take the Date object up and until the view layer, then format it with JSTL on our JSP

[Stripes-users] Two way type conversion possible?

2011-11-13 Thread ted_smith2010
Hello: hi I am trying to create a custom date converter. but the the typeconverter api only allows one way, string -> date I need to use the custom class to convert date back to string with special logic for display. The two way special conversion would only apply to the specific Date field.