Skip to content

Showing ComboBox doesn't select next focusable on tab #187

Description

@MaggdaDev

In contrary to desktop version, clicking on combobox and pressing TAB does not focus the next focusable node.

package one.jpro.hellojpro;

import javafx.application.Application;
import javafx.collections.FXCollections;
import javafx.scene.Scene;
import javafx.scene.control.ComboBox;
import javafx.scene.control.TextField;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
public class HelloJPro extends Application {

    @Override
    public void start(Stage stage) {
        ComboBox comboBox = new ComboBox(FXCollections.observableArrayList("A"));
        TextField textField = new TextField();
        Scene scene = new Scene(new VBox(comboBox, textField));
        stage.setScene(scene);
        stage.show();
    }

    public static void main(String[] args) {
        launch(args);
    }
}


Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Fields

    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions