| 1234567891011121314151617181920212223242526272829303132 |
- <!DOCTYPE html>
- <html lang="en" xmlns:th="http://www.w3.org/1999/xhtml">
- <head>
- <meta charset="UTF-8">
- <title>Title</title>
- </head>
- <body>
- <div th:fragment="div-scripts">
- <script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.8/dist/umd/popper.min.js"
- integrity="sha384-I7E8VVD/ismYTF4hNIPjVp/Zjvgyol6VFvRkX/vR+Vc4jQkC+hVqc2pM8ODewa9r"
- crossorigin="anonymous"></script>
- <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.6/dist/js/bootstrap.min.js"
- integrity="sha384-RuyvpeZCxMJCqVUGFI0Do1mQrods/hhxYlcVfGPOfQtPJh0JCw12tUAZ/Mv10S7D"
- crossorigin="anonymous"></script>
- <script src="https://cdn.jsdelivr.net/npm/autonumeric@4.5.4/dist/autoNumeric.min.js"></script>
- <script>
- AutoNumeric.multiple('.autodecimal', {
- digitGroupSeparator: '.',
- decimalCharacter: ',',
- decimalPlaces: 2,
- unformatOnSubmit: true
- });
- AutoNumeric.multiple('.autonumeric', {
- digitGroupSeparator: '.',
- decimalCharacter: ',',
- decimalPlaces: 0,
- unformatOnSubmit: true
- });
- </script>
- </div>
- </body>
- </html>
|