Re: Progress Bar into Combo Box is not working properly

2014-01-16 Thread Alexander Kouznetsov
You shouldn't mix ComboBox data items and JavaFX nodes. So change ComboBox to ComboBox. Next, you can set ProgressBars as ListCell graphics as you already do. And make sure that each cell has its own ProgressBar node. Nodes cannot be present several times in the scenegraph. That's why there is

Progress Bar into Combo Box is not working properly

2013-12-16 Thread Peter Penzov
Hi All, I want to implement Progress Bar into Combo Box. I pasted the code here: http://stackoverflow.com/questions/20518329/combobox-with-progress-bars-is-not-working-properly When I run the code the progress bar is empty. There is no selected Progress Bar which is displayed by default. And