Jfoenix: How to change JFXCombo Box text color to white

Created on 28 Apr 2017  路  11Comments  路  Source: sshahine/JFoenix

Please help me. I know this is a dumb question but please help

Most helpful comment

boop boop ^.^

.jfx-combo-box {
    -fx-background-color:  PINK;
}

.jfx-combo-box .label {
    -fx-background-color:  WHITE;
    -fx-text-fill: RED;
}

All 11 comments

Try one of these css styles. Hope it helps.

-jfx-focus-color: white;

-jfx-unfocus-color: white;

.combo-box > .list-cell {
-fx-background: black;
-fx-background-color: black;
-fx-text-fill: white;
}

Non of these work

If you mean the editor of the combobox, you might need to find a proper css property to set the editor's text color considering the default editor is a textfield.

i mean this

image
image

I made textFields using -fx-text-fill but same not working with combo

try this maybe?

.combo-box > .combo-box-button-container {
-fx-background: black;
-fx-background-color: black;
-fx-text-fill: white;
}

Nope still didnt work.. Hmm

boop boop ^.^

.jfx-combo-box {
    -fx-background-color:  PINK;
}

.jfx-combo-box .label {
    -fx-background-color:  WHITE;
    -fx-text-fill: RED;
}

@Sashie thanks mate! You did it thanks alot cuz im doing this for my degree project and im having my dead line near by thanks alot. I do have a new issue should i start it as a new issue or can i address it here it self?

by rights that's up to the ones who run this repo but i see no harm in it,,

Oh, then I'm opening this window and from here I will open another stage and in it, I have a tree view. Could I know how can I get those values back to text fields in the below shown. like lets say the one shown below is 1st window then I click on the button near the cuscode and opens another 2nd window which contains tree view which from there i need selected row values passed to my 1st below shown stage.

https://cloud.githubusercontent.com/assets/20990764/25537065/aaff7412-2c5a-11e7-8904-de7620e93f27.png

pregunto lo mismo

Was this page helpful?
0 / 5 - 0 ratings

Related issues

caoyanfeng picture caoyanfeng  路  3Comments

RodrigoSantiago picture RodrigoSantiago  路  3Comments

Natreve picture Natreve  路  4Comments

imgx64 picture imgx64  路  5Comments

SkaaRJik picture SkaaRJik  路  4Comments