-
Notifications
You must be signed in to change notification settings - Fork 4
Open
Description
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
Labels
No labels