TableView not displaying data
I am trying to get this table view to work, but for some reason, when I run the program, the table is empty. I compared it several times with the example given in the Oracle and the Youtube tutorial, but I cannot figure out what I am missing.
The code compiles without errors. Here it is:
public class JavaFXcourseNewBoston extends Application {
Stage window;
TableView<Person> table;
public static void main(String args) {
launch(args); // übernimmt den String args aus main
}
@Override
public void start(Stage ersteStage) throws Exception {
window = ersteStage;
window.setTitle("Tables!");
// public Person(String fName, String lName, int age)
//TableColumn first name
TableColumn<Person, String> fnameC = new TableColumn<>("Name");
fnameC.setMinWidth(100);
fnameC.setCellValueFactory(new PropertyValueFactory<>("fName"));
//TableColumn last name
TableColumn<Person, String> lnameC = new TableColumn<>("Last Name");
lnameC.setMinWidth(100);
lnameC.setCellValueFactory(new PropertyValueFactory<>("lName"));
//TableColumn age
// WRAPPER NOT PRIMITIVE DATA TYPES!!
TableColumn<Person, Integer> ageC = new TableColumn<>("Age");
ageC.setMinWidth(50);
ageC.setCellValueFactory(new PropertyValueFactory<>("age"));
table = new TableView<>();
table.setItems(getP());
table.getColumns().addAll( fnameC, lnameC, ageC);
VBox vbox = new VBox();
vbox.getChildren().addAll(table);
//initialize window
Scene scene = new Scene(vbox, 300, 250);
window.setScene(scene);
window.show();
}
public ObservableList<Person> getP() {
ObservableList<Person> persons = FXCollections.observableArrayList();
persons.add(new Person("Lisa", "Simpson", 10));
persons.add(new Person("Bart", "Simpson", 12));
persons.add(new Person("Marge", "Simpson", 32));
persons.add(new Person("Homer", "Simpson", 35));
persons.add(new Person("Maggie", "Simpson", 2));
return persons;
}
}// end class
And the Person class:
public class Person {
String fName;
String lName;
int age;
Person(String fName, String lName, int age)
{
this.fName = fName;
this.lName = lName;
this.age = age;
}
}
(I didn't write any getters and setters for Person since they aren't needed here.)
I have been trying to solve this for 2 hours (yes, really) and would greatly appreciate any help.
java javafx tableview
add a comment |
I am trying to get this table view to work, but for some reason, when I run the program, the table is empty. I compared it several times with the example given in the Oracle and the Youtube tutorial, but I cannot figure out what I am missing.
The code compiles without errors. Here it is:
public class JavaFXcourseNewBoston extends Application {
Stage window;
TableView<Person> table;
public static void main(String args) {
launch(args); // übernimmt den String args aus main
}
@Override
public void start(Stage ersteStage) throws Exception {
window = ersteStage;
window.setTitle("Tables!");
// public Person(String fName, String lName, int age)
//TableColumn first name
TableColumn<Person, String> fnameC = new TableColumn<>("Name");
fnameC.setMinWidth(100);
fnameC.setCellValueFactory(new PropertyValueFactory<>("fName"));
//TableColumn last name
TableColumn<Person, String> lnameC = new TableColumn<>("Last Name");
lnameC.setMinWidth(100);
lnameC.setCellValueFactory(new PropertyValueFactory<>("lName"));
//TableColumn age
// WRAPPER NOT PRIMITIVE DATA TYPES!!
TableColumn<Person, Integer> ageC = new TableColumn<>("Age");
ageC.setMinWidth(50);
ageC.setCellValueFactory(new PropertyValueFactory<>("age"));
table = new TableView<>();
table.setItems(getP());
table.getColumns().addAll( fnameC, lnameC, ageC);
VBox vbox = new VBox();
vbox.getChildren().addAll(table);
//initialize window
Scene scene = new Scene(vbox, 300, 250);
window.setScene(scene);
window.show();
}
public ObservableList<Person> getP() {
ObservableList<Person> persons = FXCollections.observableArrayList();
persons.add(new Person("Lisa", "Simpson", 10));
persons.add(new Person("Bart", "Simpson", 12));
persons.add(new Person("Marge", "Simpson", 32));
persons.add(new Person("Homer", "Simpson", 35));
persons.add(new Person("Maggie", "Simpson", 2));
return persons;
}
}// end class
And the Person class:
public class Person {
String fName;
String lName;
int age;
Person(String fName, String lName, int age)
{
this.fName = fName;
this.lName = lName;
this.age = age;
}
}
(I didn't write any getters and setters for Person since they aren't needed here.)
I have been trying to solve this for 2 hours (yes, really) and would greatly appreciate any help.
java javafx tableview
Re the GUI component toolkit. Is this using Java-FX? Android? ..
– Andrew Thompson
Nov 22 '18 at 22:38
NNo, I am not using android - this is just a project in NetBeans, trying my best to learn JavaFX.
– TooNewtothis
Nov 23 '18 at 17:18
add a comment |
I am trying to get this table view to work, but for some reason, when I run the program, the table is empty. I compared it several times with the example given in the Oracle and the Youtube tutorial, but I cannot figure out what I am missing.
The code compiles without errors. Here it is:
public class JavaFXcourseNewBoston extends Application {
Stage window;
TableView<Person> table;
public static void main(String args) {
launch(args); // übernimmt den String args aus main
}
@Override
public void start(Stage ersteStage) throws Exception {
window = ersteStage;
window.setTitle("Tables!");
// public Person(String fName, String lName, int age)
//TableColumn first name
TableColumn<Person, String> fnameC = new TableColumn<>("Name");
fnameC.setMinWidth(100);
fnameC.setCellValueFactory(new PropertyValueFactory<>("fName"));
//TableColumn last name
TableColumn<Person, String> lnameC = new TableColumn<>("Last Name");
lnameC.setMinWidth(100);
lnameC.setCellValueFactory(new PropertyValueFactory<>("lName"));
//TableColumn age
// WRAPPER NOT PRIMITIVE DATA TYPES!!
TableColumn<Person, Integer> ageC = new TableColumn<>("Age");
ageC.setMinWidth(50);
ageC.setCellValueFactory(new PropertyValueFactory<>("age"));
table = new TableView<>();
table.setItems(getP());
table.getColumns().addAll( fnameC, lnameC, ageC);
VBox vbox = new VBox();
vbox.getChildren().addAll(table);
//initialize window
Scene scene = new Scene(vbox, 300, 250);
window.setScene(scene);
window.show();
}
public ObservableList<Person> getP() {
ObservableList<Person> persons = FXCollections.observableArrayList();
persons.add(new Person("Lisa", "Simpson", 10));
persons.add(new Person("Bart", "Simpson", 12));
persons.add(new Person("Marge", "Simpson", 32));
persons.add(new Person("Homer", "Simpson", 35));
persons.add(new Person("Maggie", "Simpson", 2));
return persons;
}
}// end class
And the Person class:
public class Person {
String fName;
String lName;
int age;
Person(String fName, String lName, int age)
{
this.fName = fName;
this.lName = lName;
this.age = age;
}
}
(I didn't write any getters and setters for Person since they aren't needed here.)
I have been trying to solve this for 2 hours (yes, really) and would greatly appreciate any help.
java javafx tableview
I am trying to get this table view to work, but for some reason, when I run the program, the table is empty. I compared it several times with the example given in the Oracle and the Youtube tutorial, but I cannot figure out what I am missing.
The code compiles without errors. Here it is:
public class JavaFXcourseNewBoston extends Application {
Stage window;
TableView<Person> table;
public static void main(String args) {
launch(args); // übernimmt den String args aus main
}
@Override
public void start(Stage ersteStage) throws Exception {
window = ersteStage;
window.setTitle("Tables!");
// public Person(String fName, String lName, int age)
//TableColumn first name
TableColumn<Person, String> fnameC = new TableColumn<>("Name");
fnameC.setMinWidth(100);
fnameC.setCellValueFactory(new PropertyValueFactory<>("fName"));
//TableColumn last name
TableColumn<Person, String> lnameC = new TableColumn<>("Last Name");
lnameC.setMinWidth(100);
lnameC.setCellValueFactory(new PropertyValueFactory<>("lName"));
//TableColumn age
// WRAPPER NOT PRIMITIVE DATA TYPES!!
TableColumn<Person, Integer> ageC = new TableColumn<>("Age");
ageC.setMinWidth(50);
ageC.setCellValueFactory(new PropertyValueFactory<>("age"));
table = new TableView<>();
table.setItems(getP());
table.getColumns().addAll( fnameC, lnameC, ageC);
VBox vbox = new VBox();
vbox.getChildren().addAll(table);
//initialize window
Scene scene = new Scene(vbox, 300, 250);
window.setScene(scene);
window.show();
}
public ObservableList<Person> getP() {
ObservableList<Person> persons = FXCollections.observableArrayList();
persons.add(new Person("Lisa", "Simpson", 10));
persons.add(new Person("Bart", "Simpson", 12));
persons.add(new Person("Marge", "Simpson", 32));
persons.add(new Person("Homer", "Simpson", 35));
persons.add(new Person("Maggie", "Simpson", 2));
return persons;
}
}// end class
And the Person class:
public class Person {
String fName;
String lName;
int age;
Person(String fName, String lName, int age)
{
this.fName = fName;
this.lName = lName;
this.age = age;
}
}
(I didn't write any getters and setters for Person since they aren't needed here.)
I have been trying to solve this for 2 hours (yes, really) and would greatly appreciate any help.
java javafx tableview
java javafx tableview
edited Nov 24 '18 at 3:11
Andrew Thompson
153k27163340
153k27163340
asked Nov 22 '18 at 19:13
TooNewtothisTooNewtothis
1
1
Re the GUI component toolkit. Is this using Java-FX? Android? ..
– Andrew Thompson
Nov 22 '18 at 22:38
NNo, I am not using android - this is just a project in NetBeans, trying my best to learn JavaFX.
– TooNewtothis
Nov 23 '18 at 17:18
add a comment |
Re the GUI component toolkit. Is this using Java-FX? Android? ..
– Andrew Thompson
Nov 22 '18 at 22:38
NNo, I am not using android - this is just a project in NetBeans, trying my best to learn JavaFX.
– TooNewtothis
Nov 23 '18 at 17:18
Re the GUI component toolkit. Is this using Java-FX? Android? ..
– Andrew Thompson
Nov 22 '18 at 22:38
Re the GUI component toolkit. Is this using Java-FX? Android? ..
– Andrew Thompson
Nov 22 '18 at 22:38
NNo, I am not using android - this is just a project in NetBeans, trying my best to learn JavaFX.
– TooNewtothis
Nov 23 '18 at 17:18
NNo, I am not using android - this is just a project in NetBeans, trying my best to learn JavaFX.
– TooNewtothis
Nov 23 '18 at 17:18
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53436934%2ftableview-not-displaying-data%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53436934%2ftableview-not-displaying-data%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Re the GUI component toolkit. Is this using Java-FX? Android? ..
– Andrew Thompson
Nov 22 '18 at 22:38
NNo, I am not using android - this is just a project in NetBeans, trying my best to learn JavaFX.
– TooNewtothis
Nov 23 '18 at 17:18