java - Is it possible to change the selected listview cell's height in JavaFX -
when user taps on item want cell's height change. when user clicks out of cell or cell want cell go normal.
you can in css following in external css file:
.list-cell:selected { -fx-cell-size: 36 ; }
the default value 24.
Comments
Post a Comment