How to delete row from table column javafx

Pim

enter image description here

These are my table columns Course and Description. If one clicks on a row (the row becomes 'active'/highlighted), and they press the Delete button it should remove that row, how do I do this?

The code for my Course column: (and what event listener do I add to my delete button?)

@SuppressWarnings("rawtypes")
TableColumn courseCol = new TableColumn("Course");
courseCol.setMinWidth(300);
courseCol.setCellValueFactory(new PropertyValueFactory<Courses, String>("firstName"));

final Button deleteButton = new Button("Delete");

deleteButton.setOnAction(.....
James_D

Just remove the selected item from the table view's items list. If you have

TableView<MyDataType> table = new TableView<>();

then you do

deleteButton.setOnAction(e -> {
    MyDataType selectedItem = table.getSelectionModel().getSelectedItem();
    table.getItems().remove(selectedItem);
});

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Delete a row from a JavaFX table using context menu

From Dev

Javafx 2 : How do I delete a row or column in Gridpane

From Dev

delete row from table where column does not exist in another table

From Dev

Delete JavaFX table row with delete key

From Dev

How to delete selected row from TableView? (JavaFX with FXML)

From Dev

How to delete a JavaFx TableView Row

From Dev

how delete parent row with all child row from other table

From Dev

How to delete row from table without delete a row from referenced table?

From Dev

How to delete a column in a table?

From Dev

Delete a row from Parse Table

From Dev

Delete a row from sqlite table

From Dev

Delete row from dynamic table

From Dev

How to create, update or delete a row/column from a CKAN Datastore?

From Dev

how to delete one column and row from jagged array in c#

From Dev

How to delete a row from table using SPSS Modeler

From Dev

How to delete specific table row from backend and frontend?

From Dev

How to delete data from Mongodb and table row at a same time

From Dev

Delete a column from a css table

From Dev

Delete a column from a css table

From Dev

Delete row from table conditional on a related table

From Dev

How to quickly delete a column from a table containing 600 million rows?

From Dev

How to delete columns from a data.table based on values in column

From Dev

How to get a row and its column from a table with Protractor

From Dev

PHP : how to detect row and column number from HTML table?

From Dev

How to get a row from a look up table column contains any

From Dev

Selenium Python how to locate a specified row and a column from a table of elements

From Dev

How to create calculated column from mysql table row data

From Dev

Delete from table using column of other table

From Dev

JavaFX : How to get column and row index in gridpane?

Related Related

  1. 1

    Delete a row from a JavaFX table using context menu

  2. 2

    Javafx 2 : How do I delete a row or column in Gridpane

  3. 3

    delete row from table where column does not exist in another table

  4. 4

    Delete JavaFX table row with delete key

  5. 5

    How to delete selected row from TableView? (JavaFX with FXML)

  6. 6

    How to delete a JavaFx TableView Row

  7. 7

    how delete parent row with all child row from other table

  8. 8

    How to delete row from table without delete a row from referenced table?

  9. 9

    How to delete a column in a table?

  10. 10

    Delete a row from Parse Table

  11. 11

    Delete a row from sqlite table

  12. 12

    Delete row from dynamic table

  13. 13

    How to create, update or delete a row/column from a CKAN Datastore?

  14. 14

    how to delete one column and row from jagged array in c#

  15. 15

    How to delete a row from table using SPSS Modeler

  16. 16

    How to delete specific table row from backend and frontend?

  17. 17

    How to delete data from Mongodb and table row at a same time

  18. 18

    Delete a column from a css table

  19. 19

    Delete a column from a css table

  20. 20

    Delete row from table conditional on a related table

  21. 21

    How to quickly delete a column from a table containing 600 million rows?

  22. 22

    How to delete columns from a data.table based on values in column

  23. 23

    How to get a row and its column from a table with Protractor

  24. 24

    PHP : how to detect row and column number from HTML table?

  25. 25

    How to get a row from a look up table column contains any

  26. 26

    Selenium Python how to locate a specified row and a column from a table of elements

  27. 27

    How to create calculated column from mysql table row data

  28. 28

    Delete from table using column of other table

  29. 29

    JavaFX : How to get column and row index in gridpane?

HotTag

Archive