I made two changes in netweb.tpw (and a function)
Inside validation I use a function that returns a string that replaces comma with dot (if numeric values)
This does the magic
The downside is that I have to make sme changes every time Bruce updates Nettalk so if there is
a more generic way to do this, it would be great to hear about it.
:: rainer
############################################################################
#End
#Embed(%CustomValidate,'Validate New Value'),%FormID,TREE('Routines|'&%TabHeading&' Tab|'&%FormID&' Field|'&%FormID&' Field|Validate::'&%FormId&' Routine|4 Middle')
If p_web.Ajax = 1 and p_web.ifExistsValue('NewValue')
#IF((%FormFieldType<>'Browse') and (%FormField <>''))
#IF(%FieldType='MEMO' or %FieldType='BLOB')
bloblen = len(p_web.GetValue('NewValue'))
#IF(%FieldType='MEMO')
If BlobLen <= Len(%FormField)
%FormField = p_web.GetValue('NewValue')
End
#ELSE
%FormField[1 : bloblen] = p_web.GetValue('NewValue')
#ENDIF
#ElsIf(%FormFieldType='Color')
%FormField = p_web.dFormat(NoComma(p_web.GetValue('NewValue')),'%FromFieldColorAs') ! <================
#ELSE
%FormField = NoComma(p_web.GetValue('NewValue')) ! <==============
#ENDIF
#ENDIF
#case(%FormFieldType)
#of('Slider')
###############################################################################