Improvements for Input Syntax #3038
archiewood
started this conversation in
Ideas
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Existing situtation
There are a number of rough edges with current input syntax
<Dropdown multiple selectAllByDefault=true/>
causesfrom table where column_name in ('a','b','c',...'z')
where column_name IN
vswhere column_name =
inputs.my_input
vsinputs.my_input.value
vsinputs.my_input.end
where column_name = '${inputs.my_input.value}'
Possible Improvements
IN ${}
='${}'
->IN '(${})'
thing
→('thing')
IN ${}
throughout all dropdown components in combination with 1.where column_name IN ${inputs.myinput.value}
->where column_name IN column_name
value
propwhere column_name = ''
to allow a none selection that works in all casesIN ${inputs.picker_name.value}
→IN {inputs.picker_name.value}
Beta Was this translation helpful? Give feedback.
All reactions