Is it possible to change a given range to a list of values?
Example: change range from
"max_input_vars" : {
"default" : 10000,
"type": "int",
"range" : [ 1, 100000 ]
},
to a list of values:
"max_input_vars" : {
"default" : 10000,
"type": "list",
"values" : [
"8000",
"12000",
"16000",
"20000",
] },
.. and if yes, is this valid for all range options?
Thanks
Example: change range from
"max_input_vars" : {
"default" : 10000,
"type": "int",
"range" : [ 1, 100000 ]
},
to a list of values:
"max_input_vars" : {
"default" : 10000,
"type": "list",
"values" : [
"8000",
"12000",
"16000",
"20000",
] },
.. and if yes, is this valid for all range options?
Thanks