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 ...
4
votes
2answers
626 views
How to show a second MVC group as a dialog box in griffon
I can see how to instantiate a second MVC group, e.g.
def (loginPaneModel, loginPaneView, loginPaneController) =
createMVCGroup('LoginPane', 'LoginPane', [:]);
view.loginPanel = ...
2
votes
2answers
1k views
favourite IDE for griffon development
I am experimenting with Groovy Griffon development and I am wondering what IDE to use.
I am trying to use NetBeans 6.5, and I found this post
...
2
votes
1answer
192 views
What Java versions does Griffon support?
I want to write a Swing application in Griffon but I am not sure what versions of Java I can support.
1
vote
1answer
59 views
Why can't I wrap withRest() with my own method and run a closure within it?
The HTTPBuilder plugin for Griffon is great and it simplifies my server calls quite well. The only problem, however, is that I don't want to have to keep repeating the same setup code all over the ...
1
vote
4answers
107 views
Getting Error When I Run The Griffon Application
I'm using Ubuntu and i have installed Griffon by taking the steps from this site. Even though there is no error in my installation. When i try to run the Griffon app using the command :
griffon ...
1
vote
2answers
87 views
groovy domain objects in Db4O database
I'm using db4o with groovy (actually griffon). I'm saving dozen of objects into db4o objectSet and see that .yarv file size is about 11Mb. I've checked its content and found that it stores metaClass ...
1
vote
3answers
144 views
What to select next, for building Desktop-application?
I have been reading Groovy, and I'm half way down. I started to love groovy a lot, and apply it to solve some simple real world problem; As I love building web applications, i would go for reading ...
1
vote
4answers
205 views
How do I easily show/hide views in Griffon
First: I'm shocked that I have to ask this question. Nowhere in the docs is it explained how the new "WindowManager" should be used... I've been hacking around some hours around this and I still dont ...
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 ...
1
vote
1answer
147 views
Combine Hibernate class with @Bindable for SwingBuilder without Griffon?
I have implemented a back-end for my application in Groovy/Gradle, and am now trying to implement a GUI.
I am using Hibernate for my data storage (with HSQLDB) per
...
1
vote
3answers
937 views
populate a comboBox in Griffon App dynamically
I have 2 comboBoxes in my View of Griffon App (or groovy swingBuilder)
country = comboBox(items:country(), selectedItem: bind(target:model, 'country',
value:model.country), ...
1
vote
1answer
234 views
How do I efficiently test a Griffon application with easyb?
At the moment I am playing with Griffon. Everything works very smooth except for the testing.
I like to test the separate controller methods without starting the
whole Griffon application. To do ...
0
votes
1answer
25 views
Griffon Upgrade compilation error: mvcGroupInit repetitive method
I'm upgrading a big 0.3.1 Griffon app into 0.9.4 I'm getting these difficulties:
Controlllers:
I've disabled UI Threading Injection in order to avoid the Compilation BUG issue (see Compilation ...
0
votes
3answers
79 views
How can I make elements grow infinitely with MigLayout?
I've been thrown into a desktop application project that is behind schedule in the hopes that I can get the project moving again, but alas, I have very little experience with desktop application ...
0
votes
1answer
41 views
does Griffon support commond-line(no swing user interface) project
does Griffon support commond-line project ?
I don't want to show swing user interface
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
54 views
Creating a native installer from Griffon application
Is there any way to create a native (.rpm, .deb) installer with all required depedencies listed (e.g. some other packages needed) for lets say Ubuntu distro?
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
1answer
157 views
Griffon Gsql - how to config datasource in Config.properties file?
griffon gsql plugin's datasource config is write in DataSource.groovy,
and i want it to be in Config.properties, how?
i try, it don't work:
add Config.properties at conf
2.config in ...
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
186 views
Griffon integration test or script that displays a griffon View
When I create plane java Swing components like dialog boxes etc, it is very easy to make a unit test to display the Dialog. Basically, I can just create an instance of the dialog and call ...
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 ...
-2
votes
1answer
43 views
Griffon JMX Plugin 0.3 don't work.(update descript)
Griffon JMX Plugin 0.3 don't work.
anyone use this version
1.got error: no lib folder
then i download the src, cp lib/griffon-jmx-addon-0.3.jar
2.create a service
class SmsManagerService {
...