I noticed the following issue:
When both of preventAutoFocus and hideUserInputOnNoneTextInput are set to true, cf will still autofocus on the first option if the input is a none text input. For now, I'm using the follow code as a workaround:
dispatcher.addEventListener(UserInputEvents.CONTROL_ELEMENTS_ADDED, function(event) {
document.activeElement.blur();
}, false);
I noticed the following issue:
When both of
preventAutoFocusandhideUserInputOnNoneTextInputare set totrue, cf will still autofocus on the first option if the input is a none text input. For now, I'm using the follow code as a workaround: