enumInt field

This commit is contained in:
Yuri Kuznetsov
2013-11-05 12:44:24 +02:00
parent 417576fd5e
commit fbb1fdb8fe
3 changed files with 30 additions and 5 deletions
@@ -14,8 +14,8 @@
"default": "HH:mm"
},
"weekStart": {
"type": "enum",
"options": ["0", "1"],
"type": "enumInt",
"options": [0, 1],
"default": 0
},
"thousandSeparator": {
@@ -32,9 +32,9 @@
"default": "HH:mm"
},
"weekStart": {
"type": "enum",
"options": ["0", "1"],
"default": "1"
"type": "enumInt",
"options": [0, 1],
"default": 1
},
"thousandSeparator": {
"type": "varchar",
+25
View File
@@ -0,0 +1,25 @@
{
"params":[
{
"name":"required",
"type":"bool",
"default":false
},
{
"name":"options",
"type":"array"
},
{
"name":"default",
"type":"varchar"
},
{
"name":"translation",
"type":"varchar"
}
],
"search":{
"basic":false,
"advanced":true
}
}