Source Code of AutoFill TextBox Released
Hello Today I would like to release my source code as open. This control is about the AutoFill TextBox. If you need more info of… Read More »Source Code of AutoFill TextBox Released
Narayan Gopal Maharjan is a 22 years old software developer, living in the Kathmandu, Nepal and currently under-graduating on software engineering.He has keen interest at Java and Javafx programming , he started programming from his high school age and he develops software on Web(JavaEE), Desktop(Java Swing,Java FX), Mobile(Android) devices.
Hello Today I would like to release my source code as open. This control is about the AutoFill TextBox. If you need more info of… Read More »Source Code of AutoFill TextBox Released
Hello Javafx geeks,
Today I’m wondering where is the blockinMouse property in Javafx 2.0? Is it on developing progress ? Or it’s just disappear . According to javafx bug reporting site I’ve found that one guy was playing with blockinMouse using JavaFX 2.0 which as posted on Jan 2011.
In source code I’ve found that guy was doing some stuffs with rectangle Node I’ll show small snippet code :
1 2 3 4 5 6 7 8 9 10 11 12 |
" ]final Rectangle nodeAbove = new Rectangle(50, 50, 100, 100); nodeBelow.setFill(Color.RED); nodeBelow.addEventHandler(MouseEvent.MOUSE_CLICKED, new EventHandler() { public void handle(MouseEvent t) { System.out.println("RED clicked"); } }); nodeAbove.setFill(Color.GREEN); nodeAbove.setBlocksMouse(false); |
Updated on Dec 4, 2014: Published in Maven Repository javafx-autocomplete-field
Updated on Aug 5, 2014: Fixed code for JavaFX 8 [Github Repo]
Hello After working some couple of days on Javafx 2.0 Custom Control. I came to the final result of my Custom Control. The Custom Control which I’m going to tell you is about “Auto-Fill TextBox” . This control consists of two major controls they are TextBox and ListView with a Popup where Listview is embedded.
Features of this textbox
Let’s start these features one by one. To start using this control you can first download the Jar package or see Documentation first.
Read More »Updated: AutoFill TextBox with FilterMode in Javafx 2.0 (Custom Control)
Hello , Today I’m going to show the small demo of masking. In javafx masking is known as clipping. Every Node Object has
1 |
public final void <strong>setClip</strong>(<a title="class in javafx.scene">Node</a> value) |
You can use the setClip to any Node.The setClip is used to mask for specific dimension of the existing Node.Let’s see the demo application of this masking in Detective Glass Application.
Read More »Masking in Javafx 2.0
Hello Today I’m going to demonstrate the PieChart of Javafx 2.0 beta release. This PieChart does gets it’s data from the database. I’ll be using mysql as the database for instance.
The requirement for this demonstration:
Database Structure:
The database structure of the demostration is given below:Read More »PieChart Data from Database in Javafx 2.0