Re: Comma as decimal field

2012-04-05 Thread Python_Junkie
I assume that your problem is that when the data is posted , the ORM when submitting it to the database throws the eror. You need to place the posted value into a variable and use a python replace statement to replace the , with a period. Not sure what type of validation that you are using. P

Comma as decimal field

2012-04-05 Thread ydjango
What is best way to allow users to enter decimal either as "." or as ",'? Currently if user enter "," django forms throw error. I cannot change settings file based on user as same app serves users worldwide. -- You received this message because you are subscribed to the Google Groups "Django us