I use ZF 1.8.
My problem. The user will see 1,2 and the database need 1.2 by a float field.
LocalizedToNormalized as a filter on a form element is working
1,2 is stored as 1.2 in the database.
But what is, with the way from database to form.
If I load a 1.2 into the form, the element displays 12.
If I load a 1,2 into the form, the element display 1.2.
But never it shows the right value 1,2.
On my form-element I use a LocalizedToNormalized, and after reading my data with a Zend_Db_Table_Abstract implementation i use manualy a NormalizedToLocalized filter. Thats made a 1,2 from 1.2.
But the form show 1.2.
No I am very confused. Thanks for your help.
By the way, zend is very powerfull and if all question are answered the solutions are short and simple. But the track to the right solutions can be long and painfull.