I am very new with netbeans. I was following an introduction course which shows how to Bind jLabel to a jslidebar. The course shows netbeans 7 and I found similar samples with 8.x. Steps Add jslidebar to a form. Add jLabel Right click on jLabel Click on Bind
I have installed netbeans 9 and 10 in two different machines but "bind" option is not in the menu or in another menu. Or at least, is not easy to be found. Was it option renamed or removed on ver 9/10? Is anything missing in my installation? Thank in advance for all. Regards
The first results of my investigation are that Netbeans 9+ has dropped the use of beansbindings.
This is what pull request #300 on the netbeans github repository seems to indicate.
You can still compile an older (Netbeans 8) project after downloading the
org.jdesktop.beansbinding
jar from the maven repository for example, and adding it as a JAR dependency to your project. However, you won't be able to edit the bindings themselves using the Netbeans 9+ UI.I haven't yet found a way to replace this with an equivalent solution. I tried reproducing what PR#300 mentioned above is doing, but that doesn't seem to work properly (at least with Netbeans 9 and JDK 9.0.4).
I'll edit this response if I do find a neat way of doing this.