Add caseSensitive option for combofields, use for source=*

(closes #4558)
This commit is contained in:
Bryan Housel
2017-11-26 19:30:19 -05:00
parent cfa1759367
commit c0040f3cd6
4 changed files with 9 additions and 0 deletions
+2
View File
@@ -37,8 +37,10 @@ export function uiFieldCombo(field, context) {
optstrings = field.strings && field.strings.options,
optarray = field.options,
snake_case = (field.snake_case || (field.snake_case === undefined)),
caseSensitive = field.caseSensitive,
combobox = d3_combobox()
.container(context.container())
.caseSensitive(caseSensitive)
.minItems(isMulti || isSemi ? 1 : 2),
comboData = [],
multiData = [],