In our application we are using ComboxItem for dropdown in a listgrid. In the comboboxItem CompleteOnEnter property has been set to true and setCompleteOnTab to false.
comboBoxItem.setCompleteOnTab(false);
comboBoxItem.setCompleteOnEnter(true);
Now when user is typing something in the ComboBox and only one option is left in the filtered out dropdown, in that scenario we want that the only dropdown option that is left should get selected on tab key.
How can we implement that.
comboBoxItem.setCompleteOnTab(false);
comboBoxItem.setCompleteOnEnter(true);
Now when user is typing something in the ComboBox and only one option is left in the filtered out dropdown, in that scenario we want that the only dropdown option that is left should get selected on tab key.
How can we implement that.
Comment