TableView wird in VBox in JavaFX nicht gestrecktJava

Java-Forum
Anonymous
 TableView wird in VBox in JavaFX nicht gestreckt

Post by Anonymous »

Ich habe zwei TableView in einer VBox. Ich möchte, dass das erste wächst und den gesamten verfügbaren Platz einnimmt, während das zweite sich nicht ausdehnt. Das ist mein aktueller Code:

Code: Select all

public class TestFx extends Application {

@Override
public void start(Stage primaryStage) {
ObservableList data1 = FXCollections.observableArrayList();
ObservableList data2 = FXCollections.observableArrayList();

for (int i = 1; i  cellData.getValue().valueProperty());

table.getColumns().addAll(col1, col2);
table.setColumnResizePolicy(TableView.CONSTRAINED_RESIZE_POLICY);

return table;
}

public static class TestItem {
private final SimpleStringProperty name;
private final SimpleStringProperty value;

public TestItem(String name, String value) {
this.name = new SimpleStringProperty(name);
this.value = new SimpleStringProperty(value);
}

public String getName() { return name.get(); }
public void setName(String name) { this.name.set(name); }
public SimpleStringProperty nameProperty() { return name; }

public String getValue() { return value.get(); }
public void setValue(String value) { this.value.set(value); }
public SimpleStringProperty valueProperty() { return value; }
}

public static void main(String[] args) {
launch(args);
}
}
Und das ist das Ergebnis:
Image

Wie Sie sehen können, zeigt die zweite Tabelle leere Zeilen an, sodass sie mehr Platz als erforderlich einnimmt. Wie kann ich das Problem beheben?

Quick Reply

Change Text Case: 
   
  • Similar Topics
    Replies
    Views
    Last post