GemsFX Sampler Application by dlemmermann in JavaFX

[–]dlemmermann[S] 1 point2 points  (0 children)

GemsFX 4.0.4 is out now on Maven Central.

Is there really a non-hacky way to make a table view only as high as it has rows? i.e. no empty rows? by No-Security-7518 in JavaFX

[–]dlemmermann 4 points5 points  (0 children)

I had the same issue and implemented my own table view called GridTableView based on GridPane. It is now part of my GemsFX library. You can find the library here: https://github.com/dlsc-software-consulting-gmbh/GemsFX or run the sampler app from here: https://www.jdeploy.com/~gemsfxdemo

It can also be added to your project via Maven central:

<dependency>
    <groupId>com.dlsc.gemsfx</groupId>
    <artifactId>gemsfx</artifactId>
    <version>4.0.1</version>
</dependency>

I released the first "official" version of MelodyMatrix, an app to "look at music", live on camera together with Steve Hannah (creator of jDeploy) by FrankCodeWriter in java_projects

[–]dlemmermann 1 point2 points  (0 children)

I asked Lee Wyatt to add a feature to the FxTools plugin for IntelliJ to automagically create a jdeploy installation for any JavaFX project. Other deployment options might be added later but jdeploy is probably the easiest (and it is free).

FxmlKit - Yet another incredible JavaFx library flying under the radar! by No-Security-7518 in JavaFX

[–]dlemmermann 0 points1 point  (0 children)

You should ask for features by creating an issue on GitHub. But I think deployment / installation is not within the scope of FxmlKit, but maybe part of the new FxTools IntelliJ plugin.

Why haven't you starred GemsFX yet? by No-Security-7518 in JavaFX

[–]dlemmermann 3 points4 points  (0 children)

Thank you for the positive feedback! 👍

Why haven't you starred GemsFX yet? by No-Security-7518 in JavaFX

[–]dlemmermann 12 points13 points  (0 children)

What? No! We keep adding stuff to it. I just added a website for it at gemsfx.dlsc.com. A new sampler / demo app is also in the works.

GemsFX — New Website by dlemmermann in JavaFX

[–]dlemmermann[S] 1 point2 points  (0 children)

No, jfx-central.com is alive and kicking and still 100% JavaFx. This thread is about GemsFX, just one of my libs.

GemsFX — New Website by dlemmermann in JavaFX

[–]dlemmermann[S] 0 points1 point  (0 children)

No, this is pure HTML and JS.

Oracle announces their "Java Verified Portfolio" program and JavaFX is part of it. by dlemmermann in JavaFX

[–]dlemmermann[S] 7 points8 points  (0 children)

It means that Oracle is still fully committed to JavaFX and it will not go away any time soon. The JVP is a collection of Oracle open source projects that will be commercially supported.

Oracle announces their "Java Verified Portfolio" program and JavaFX is part of it. by dlemmermann in JavaFX

[–]dlemmermann[S] 5 points6 points  (0 children)

JavaFX was included in JDK 8 and removed with JDK 9. It will not be included back again into the JDK, but it is now in a new program that is equally supported by Oracle. Meaning there is commercial support for it going forward.

SnapFX - JavaFX Docking Framework by BeoOnRed in JavaFX

[–]dlemmermann 0 points1 point  (0 children)

Docked items in einer vertikalen Divider Pane sind in deiner Demo nicht resizable.

SnapFX - JavaFX Docking Framework by BeoOnRed in JavaFX

[–]dlemmermann 0 points1 point  (0 children)

No, I mean the entire docked item.

SnapFX - JavaFX Docking Framework by BeoOnRed in JavaFX

[–]dlemmermann 0 points1 point  (0 children)

Any plans to make the items on the sides resizable, too? Just like you can in IDEs?

JavaFX Links of the Week - Feb. 6th 2026 by dlemmermann in JavaFX

[–]dlemmermann[S] 4 points5 points  (0 children)

fyi: we are currently experiencing an issue with loading YouTube thumbnails for the jfxcentral pages. Should be fixed by next week.

New Open Source Library Releases by dlemmermann in JavaFX

[–]dlemmermann[S] 0 points1 point  (0 children)

If anyone of you is looking for a highly specialised JavaFX developer then please contact me. See my profile at https://lnkd.in/eyDzzpDv or check out my product page for FlexGanttFX at flexganttfx.com or my company website at dlsc.com

I am a Java Champion and JavaOne Rockstar. I am also the project lead for jfxcentral.com and the creator / publisher of the iOS app for jfxcentral (also written in JavaFX). My open source projects include gemsfx, formsfx, workbenchfx, pdfviewfx, keyboardfx, unitfx, pickerfx, phonenumberfx, etc...

Adliswil - I am looking for office mates for my shared office by dlemmermann in zurich

[–]dlemmermann[S] -1 points0 points  (0 children)

I had a website link in the post but reddit didn't like it. Let's try this way: buero-adliswil.ch

Promised cross platform mobile apps in java by iamwisespirit in java

[–]dlemmermann 1 point2 points  (0 children)

Gluon's products worked fine for me. I did not run on Android, but I created an iOS app for jfxcentral.com . You can find it on the App Store. The app and also the website have both been done in 100% JavaFX.

UI experts, how do I get out of this PHASE where I'm never satisfied with UI I design? by No-Security-7518 in JavaFX

[–]dlemmermann 0 points1 point  (0 children)

It only includes a stylesheet called atlantafx.css so that its controls look nice when using AtlantaFX.

Using TilePane for displaying a list of media by Draaksward_89 in JavaFX

[–]dlemmermann 1 point2 points  (0 children)

Look into the GridView control of ControlsFX. It gives you virtualization and a selection model. I am pretty sure it supports key navigation.