listview - How to get transparent list view in javafx? -


i have list view. want make cells background transparent. currently, doing following:

.list-cell {     -fx-background-color: transparent; } 

but, color of cells remain white. have tried same other colors. works other colors. but, it's not working transparent color. how can transparent list-view?

you have make both list-view , list-cell transparent.

.list-cell {     -fx-background-color: transparent; } .list-view {     -fx-background-color: transparent; } 

Comments

Popular posts from this blog

java - unable show chart in xls document using jasper reports -

javascript - Slick Slider width recalculation -

jsf - PrimeFaces Datatable - What is f:facet actually doing? -