Hi all I'm trying to use MyFaces to develop a CRUD application, and so far it is working like a charm. But I have something that isn't occurring like I was expecting. I have to do a simple auditing in my app(is quite simple - When I add a record, in the backing bean I set the creationDate in my edit() method, and when I update a record, I set the updateDate in my edit() method). But the thing is that the h:inputText of creationDate isn't receiving the actual date, neither the h:inputText of updateDate is receiving the actual date. I've tried a simple solution, just adding String creationDate and String updateDate to the backing bean, setting it in the edit() method, and in the save() method, catching and setting the date in the bean. But this also doesn't work. How can I ass this behavior to my app?
Thx a lot Rafael Mauricio Nami

