get the number row of gridpane Javafx

Benj

I Have a gridpane and the number of row may be inderterminate. How add a number row of gridpane ? Or How add at the last of gridpane ?

Thanks.

fabian

Simply find the maximum row index from the children of the GridPane:

GridPane gridPane = ...
int maxIndex = gridPane.getChildren().stream().mapToInt(n -> {
    Integer row = GridPane.getRowIndex(n);
    Integer rowSpan = GridPane.getRowSpan(n);

    // default values are 0 / 1 respecively
    return (row == null ? 0 : row) + (rowSpan == null ? 0 : rowSpan - 1);
}).max().orElse(-1);

// add nodes after last row
gridPane.addRow(maxIndex+1, node1, node2, ...);

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Java

Relative sizing in JavaFx GridPane

From Dev

Get the number of rows in a JavaFX GridPane?

From Dev

getting the contenents of a GridPane javafx

From Dev

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

From Dev

Javafx gridpane layout allignment

From Dev

JavaFX: GridPane, ObservableList and ListChangeListener

From Dev

Javafx gridpane width setting

From Dev

Replace a node at (row,col) in a JavaFX GridPane

From Dev

Lengthen Javafx Sliders in GridPane

From Dev

JavaFX How to change the GridPane row height programmatically

From Dev

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

From Dev

Possible to decide number of rows and columns in GridPane (JavaFX)

From Dev

How to get GridPane Row and Column IDs on Mouse Entered in each cell of Grid in JavaFX?

From Dev

JavaFX - Iterate GridPane nodes per row - Read Nodes of GridPane per row

From Dev

JavaFx GridPane layout how to set margin for an element in row?

From Dev

Adding borders to GridPane JavaFX

From Dev

JavaFX - GridPane Background Image

From Dev

How do I get buttons to fill a javafx gridpane?

From Dev

Gridpane of Squares in JavaFX

From Dev

JavaFX alignment of Label in GridPane

From Dev

How to get same vertical size of TitledPanes in a Gridpane? (JavaFX, Scenebuilder)

From Dev

JavaFX: Inserting image into a GridPane

From Dev

JavaFX, can't get GridPane to fit in the center of BorderPane

From Dev

JavaFX GridPane col/row span vs index

From Dev

Setting Labels to a GridPane in JavaFx

From Dev

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

From Dev

JavaFX, can't get GridPane to fit in the center of BorderPane

From Dev

JavaFX GridPane col/row span vs index

From Dev

Accessing the column and row index of GridPane in JavaFX keeps returning null

Related Related

  1. 1

    Relative sizing in JavaFx GridPane

  2. 2

    Get the number of rows in a JavaFX GridPane?

  3. 3

    getting the contenents of a GridPane javafx

  4. 4

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

  5. 5

    Javafx gridpane layout allignment

  6. 6

    JavaFX: GridPane, ObservableList and ListChangeListener

  7. 7

    Javafx gridpane width setting

  8. 8

    Replace a node at (row,col) in a JavaFX GridPane

  9. 9

    Lengthen Javafx Sliders in GridPane

  10. 10

    JavaFX How to change the GridPane row height programmatically

  11. 11

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

  12. 12

    Possible to decide number of rows and columns in GridPane (JavaFX)

  13. 13

    How to get GridPane Row and Column IDs on Mouse Entered in each cell of Grid in JavaFX?

  14. 14

    JavaFX - Iterate GridPane nodes per row - Read Nodes of GridPane per row

  15. 15

    JavaFx GridPane layout how to set margin for an element in row?

  16. 16

    Adding borders to GridPane JavaFX

  17. 17

    JavaFX - GridPane Background Image

  18. 18

    How do I get buttons to fill a javafx gridpane?

  19. 19

    Gridpane of Squares in JavaFX

  20. 20

    JavaFX alignment of Label in GridPane

  21. 21

    How to get same vertical size of TitledPanes in a Gridpane? (JavaFX, Scenebuilder)

  22. 22

    JavaFX: Inserting image into a GridPane

  23. 23

    JavaFX, can't get GridPane to fit in the center of BorderPane

  24. 24

    JavaFX GridPane col/row span vs index

  25. 25

    Setting Labels to a GridPane in JavaFx

  26. 26

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

  27. 27

    JavaFX, can't get GridPane to fit in the center of BorderPane

  28. 28

    JavaFX GridPane col/row span vs index

  29. 29

    Accessing the column and row index of GridPane in JavaFX keeps returning null

HotTag

Archive