Hi, i am using a custom BigDecimalConverter to remove some punctuation and stuff when converting the string to BigDecimal. My problem is that, i have some validation on the onSubmit() method, and when some error is added on the onSubmit(), the BigDecimal showed on the screen recovers the punctuation again. Maybe this will be clear with an example:
I insert this number on the BigDecimal TextField: 1555.98 and press submit, when i validate in onSubmit() and throws an error, when the page is redisplayed the BigDecimal is shown like this: 1,555.98. What i want is to remove the grouping comma (may be different if the Locale is different). What can i do to achieve this? Thanks in advance!! Manuel.
