aspose file tools
The moose likes JSF and the fly likes In MyFaces 1.2, UPDATE_MODEL_VALUES phase set object model to default value even though it is null Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » JSF
Reply Bookmark "In MyFaces 1.2, UPDATE_MODEL_VALUES phase set object model to default value even though it is null" Watch "In MyFaces 1.2, UPDATE_MODEL_VALUES phase set object model to default value even though it is null" New topic
Author

In MyFaces 1.2, UPDATE_MODEL_VALUES phase set object model to default value even though it is null

Sajan Patel
Ranch Hand

Joined: Oct 25, 2004
Posts: 77
In my application, I have myFaces 1.2.

In object model I have BigDecimal field and it is populated with Custom converter.

This custom converter return NULL from getAsObject and getAsString if value is null.
Now I can see this custom convert is returning NULL when I keep my Text Field empty but in UPDATE_MODEL_VALUES phase it is populated with default value.

Does this happen with every body ?
Note:- Same program set null value to object model if it is null returned from Custom Converter fine in my Faces 1.1

BEFORE PHASE : UPDATE_MODEL_VALUES(4)
Money : null
AFTER PHASE : UPDATE_MODEL_VALUES(4)
Money : 0
 
I agree. Here's the link: http://aspose.com/file-tools
 
subject: In MyFaces 1.2, UPDATE_MODEL_VALUES phase set object model to default value even though it is null
 
Similar Threads
Struts2 conversion/validation problem
JSF Phase:UPDATE_MODEL_VALUES
Issues with facelets and saveState?
Action vs ActionListener in JSF/IceFaces
JSF clear fields on validation errors