codeconsole opened a new issue, #14220: URL: https://github.com/apache/grails-core/issues/14220
I have created a very basic grails 4.0.0.RC1 app to demonstrate the problem: https://github.com/codeconsole/grailsnumberbug ``` package numberbug class Bug { int num = 123456789 static constraints = { } } ``` `<f:all bean="bug"/>` creates an input field `<input type="number" name="num" value="123,456,789" required="" id="num">` which is not valid markup in either Chrome or Safari. The default behavior should be to not put commas in numbers due to the fact it breaks everything -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
