Hi, each time on a submit failed the field values associated to a simple string persist without requiring @Persist annotation. But when you have any other type of fields, for example a list from an ajaxformloop, or a file selection, their values doesn't persist naturally, you have to use @Persist (and even the FLASH one doesn't work). That's really frustrating and cause you to have to manage some values in session that force you to use really weird tricks to manage them, for example when you come back later to a form you failed submit before and you see a part of old-entered values or fiels of an ajaxformloop still there.
I would like to know if there is a method, a best practice, to handle the submitting persistence of values that are not link to simple String Property. Thanks in advance.