Questions tagged [groovyfx]

GroovyFX is a Groovy binding for JavaFX 2.0.

GroovyFX is a Groovy Module focused on making developing JavaFX 2.0 based UIs in Groovy easy. The main project page is under the Groovy section at codehaus located at GroovyFX. From there, you can download the project jar files, source code, if you are so inclined, and of course the project documentation.

17 questions
0
votes
1 answer

In GroovyFX, how to modularize the page layout?

I'm fairly new to JavaFX and GroovyFX. I just build my first form on JavaFX, and as soon I got it working I ported it to GroovyFX because I'm on a Groovy/Grails development team. I'd like to know how to modularize the page layout, that is, how to…
alexramos
  • 61
  • 7
0
votes
2 answers

Manage wait cursor for task

I'm outside the UI and wish to display a wait cursor while stuff is happening and using this basic pattern: on UI - primaryStage.scene.cursor = Cursor.WAIT try { do stuff off UI... } finally { on UI - primaryStage.scene.cursor =…
shnplr
  • 230
  • 3
  • 12
1
2