-1
I have a small project done in Java using Springmvc and wanted one of the fields of a form to have the monetary input mask, but when I give Submit in the form it error in Binding with the model, because the field is in Bigdecimal and the characters placed by the mask go together. I’ve tried some plugins done in Jquery but so far nothing has helped...anyone know a plugin that suits me? Something that takes the dots out of the mask and replaces the comma with a dot when giving Submit...:
1.234,56 -------> 1234.56
VC can remove the dot (or the dots) and replace the comma by dot in the backend itself by submitting the form and receiving the value.
– Sam