decimal mark thousand separator options

This commit is contained in:
Yuri Kuznetsov
2023-01-04 11:56:50 +02:00
parent f93060a5ca
commit ddf9dfba47
2 changed files with 22 additions and 4 deletions
@@ -26,13 +26,22 @@
"type": "varchar",
"default": ",",
"maxLength": 1,
"view": "views/settings/fields/thousand-separator"
"view": "views/settings/fields/thousand-separator",
"options": [
".",
",",
"'"
]
},
"decimalMark": {
"type": "varchar",
"default": ".",
"required": true,
"maxLength": 1
"maxLength": 1,
"options": [
".",
","
]
},
"dashboardLayout": {
"type": "jsonArray",
@@ -142,13 +142,22 @@
"type": "varchar",
"default": ",",
"maxLength": 1,
"view": "views/settings/fields/thousand-separator"
"view": "views/settings/fields/thousand-separator",
"options": [
".",
",",
"'"
]
},
"decimalMark": {
"type": "varchar",
"default": ".",
"required": true,
"maxLength": 1
"maxLength": 1,
"options": [
".",
","
]
},
"currencyList": {
"type": "multiEnum",