danielpeintner
danielpeintner
FYI: https://github.com/beryx/badass-jlink-plugin/ seems to provide support for `jpackage` which will be be introduced in Java 14
> You can blame this delay of releases on me. The last release was 11.0.0. I don't wanna blame anyone. On the contrary! w.r.t. 6 months release cycle I kind...
I just noticed that the [README](https://github.com/controlsfx/controlsfx/blob/master/readme.md#getting-controlsfx) might need to be updated to reflect the latest published versions
> The new property can be a `BiFunction`, Makes sense and aligns well with [`TableFilter`](https://github.com/controlsfx/controlsfx/blob/839a39aa6a75b8938256101918292a0044137fe7/controlsfx/src/main/java/org/controlsfx/control/table/TableFilter.java#L111)
w.r.t. to `testCompile` I believe one should use `testImplementation` nowadays... not sure if that resolves the issue though
FYI: You could try to set lazy initialization but I am not sure if it does have any effect for your case (see https://controlsfx.github.io/javadoc/11.0.3/org.controlsfx.controls/org/controlsfx/control/table/TableFilter.Builder.html#lazy(boolean)) `TableFilter.forTableView(tableView).lazy(false).apply();`
I can confirm the problem but I do not really understand *why* `indexOf()` can throw `NoSuchElementException` in the following line https://github.com/openjdk/jfx/blob/dd22cd2d97d4bfc305e44f2e77b4c104c62ff31f/modules/javafx.controls/src/main/java/javafx/scene/control/ComboBox.java#L245 The same code changing `SearchableComboBox` to `ComboBox` works just...
What comes to my mind is “Free as in beer”... ControlsFX is a free open source library given to you at no cost and you should not have any expectations....
I created a Java11 test project a while ago... * [modular](https://github.com/danielpeintner/Java11Test) * [non-modular](https://github.com/danielpeintner/Java11Test/tree/non-modular) Please take a look at `build.gradle`. Hope this helps.
I am not aware of such a control (this doesn't mean there isn't) but there is [CheckComboBox](https://github.com/controlsfx/controlsfx/wiki/ControlsFX-Features#checked) in ControlsFX. Having said that, it is not meant to search.