Posted on May 18th, 2011 by Richa Singhal
‘Drag and drop’ is not supported in a standard way in JavaFx 1.3.1 . However, there are some functions that work with Swing toolkit which enable the target resource to know that something thing has been dropped over it. Several objects can be dragged simultaneously and the objects can be in different formats like normal [...]
Filed under: JavaFX, UI, Usability | No Comments »
Posted on October 22nd, 2010 by Richa Singhal
In this post, you’ll learn to create your custom renderer for a cell or a header of a table in JavaFx. A table which is apparently a swing JTable wrapped in a node of JavaFx using SwingComponent class. In the following application I’ll not only use these renderers, but will also provide solution to the [...]
Filed under: HTML, JavaFX, UI | 3 Comments »
Posted on September 28th, 2010 by Richa Singhal
The declarative nature of JavaFx code often results in an ugly, untidy and lengthy files which are quite overwhelming at times. It’s very easy to let things written-on in JavaFX script unless it gets impossible to follow such deeply nested code as it is not easy to figure out what goes with what. Though we [...]
Filed under: JavaFX | 4 Comments »
Posted on August 16th, 2010 by Richa Singhal
If you want to have Marquee effect i.e automatic scrolling of text from left to right or down to up in JavaFx, you need to write a custom component of your own. Using a Marquee tag of HTML doesn’t work, if you try to use directly in a label text or a swing component in [...]
Filed under: Creativity, HTML, Java, JavaFX, UI | 3 Comments »