vote up 1 vote down star
1

I have a large dataset that needs to be displayed for users and looking for Swing's JTable like component in JavaFX.

flag

2 Answers

vote up 1 vote down check

You can wrap JTable to be used in JavaFX. Check out the following article http://java.dzone.com/articles/javafx-reintroduce-swing-jtabl

link|flag
The article looks interesting but the code will not work under JavaFX 1.2. – Honza Jun 12 at 7:25
You may also find more info at weblogs.java.net/blog/aim/… – eugener Jun 12 at 18:38
vote up 1 vote down

I recommend you read Amy Fowler's recent blog post (especially point 6):

Any Swing component can be embedded in a JavaFX scene graph using the SwingComponent wrap() function. This conveniently allows you to directly leverage those Swing components which you've already configured, customized, and hooked to your application data; all that Java code can remain happily unmodified. Once you've created the structure of your scene's layout, you can pull your Swing components into the appropriate locations.

http://weblogs.java.net/blog/aim/archive/2009/06/insiders_guide.html

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.