Tagged Questions

8
votes
5answers
931 views

What's the definitive Java Swing starter guide and reference?

Obviously the Java API reference, but what else is there that you all use? I've been doing web development my entire career. Lately I've been messing around a lot with Groovy and I've decided to ...
3
votes
2answers
155 views

Swingbuilder - application location centering

I am creating an application using Griffon->SwingBuilder. I would like to able to center the application on the desktop. I know we have the 'location: [x,y]' argument we can provide on application ...
1
vote
2answers
205 views

How to replace existing Swing UI module with Griffon based one in a legacy Java application?

The application that I would like to revamp is pretty well organized. UI is separated into a module. UI controllers implement the interface PropertyChangeListener. When other modules want to have ...
0
votes
1answer
49 views

Griffon JMS plugin

I'm starting to learn Groovy with a Client-Server architecture. As the server I have a Grails application that contains a JMS topic. For the client I have a Griffon application, which I'd like to ...
0
votes
1answer
90 views

Inserting Items to BoxLayout at Runtime?

I am trying to figure out how I can insert items to BoxLayout at runtime... or achieve a similar effect using a different widget/panel/layout. The design for the application window is to have several ...
0
votes
0answers
46 views

Templating Views Based on Data Type in Model and Dynamic Updates in Griffon

A short version of my question can be summed up be asking: Can the concept of DataTemplates, found in WPF, be applied in Griffon? Now, the longer version... QUESTION 1: I would like to display ...
0
votes
2answers
138 views

Auto updating (time) tooltip in Griffon SystemTray

Hey, I'm thinking about using griffon in an very simple DeskTop app I've been asked to code. 90% of it's features are a few mouse clicks away from the system tray, it's like "start/choose/stop". One ...
0
votes
1answer
603 views

SwingBuilder: scrollPane

What's the proper way to set up a scroll pane using groovy's SwingBuilder? I'm using griffon and I'm having a hard time adding and removing components dynamically... Here's a snippet I've tried ...