Griffon is a rich client application platform that uses Groovy and Java.

learn more… | top users | synonyms

0
votes
1answer
19 views

How can I setup Eclipse to develop Griffon applications?

Is there any plugin that I can install in Eclipse so as to develop Griffon applications? Basically, how can I do Griffon application development with Eclipse?
0
votes
1answer
55 views

Client-Server application using Griffon and Spring

I'm developing an client-server application. In this application, Model classes are supposed to be in Server side whereas Controller and Views will be in Client side. I'm trying out Griffon to build ...
4
votes
4answers
120 views

Should I use a framework?

I know this question is vague, but I'll try to make myself clear. I am starting a Java project involving a Swing GUI. I want to follow the MVC pattern, and could use some help from a framework to ...
1
vote
2answers
58 views

IntelliJ hightlights as error a working code in Griffon

Below is a snippet from a working code taken from the Groovy in Action book. As you see below, IntelliJ sees it as error. Why? See picture below:
0
votes
1answer
35 views

file type differences for griffon when using IntelliJ

Why IntelliJ recognizes groovy files for Controller and Model as groovy class, but for View - as groovy script?
1
vote
1answer
36 views

changing startup MVC group in Application.groovy issue

I've created new Groffin module using IntelliJ. I was prompted for create-app command. Creating a module was fine, and as you know, by default, when you ran an app, it shows applet with default ...
0
votes
1answer
54 views

Error running Griffon app in IntelliJ, but it works from command prompt

There's an exercise with mortageCalc application at paragraph 3.6.1 in the Griffon in Action book. Environment: Win 7 Pro, 64-bit IntelliJ IDEA ver 12.1 Griffon-1.2.0 JDK 1.6 I have ...
0
votes
0answers
101 views

org.codehaus.groovy.runtime.metaclass.MissingPropertyExceptionNoStack: No such property: resourceResolver for class: griffon.swing.SwingApplet

Im having problem to run griffon applet in the browser when i package it to applet. this error was occurred when browser try to execute my applet:- ...
0
votes
1answer
51 views

How to add auto generated id on textField in Griffon?

I have tried a code about auto generating id. I want to try it on JTextField, but I don't know where i should put it. Here is my code: --PembelianController.groovy-- String generateID() { ...
0
votes
2answers
40 views

How do I encrypt a password in Griffon?

I tried to encrypt a password in Griffon, but I don't know how to do that. Usually I'd use md5 in another language, but what in griffon? Here is a bit of my code: if (sql.firstRow("SELECT userID ...
0
votes
2answers
45 views

How to load a database table in JInternal Frame?

I'm having a problem to load table inside a JInternal frame, I can't describe it, but I'll show you a image so you understand what I mean. Here's my code: --SparepartController.groovy-- package ...
0
votes
0answers
167 views

Griffon: Error when running report with JasperReports

I tried to run this code but it give me error like this: 2013-03-26 22:45:55,546 [pool-2-thread-1] ERROR griffon.util.GriffonExceptionHandler - Uncaught Exception ...
0
votes
1answer
45 views

Griffon: Error when execute code for JInternalFrame

I just searching in google recently and want to try this code below to work in Griffon 1.2.0 but when i run it it give me error like this: 2013-03-23 12:13:01,877 [main] DEBUG ...
0
votes
1answer
31 views

Griffon & JPA : environment configuration in persistence.xml

Using Griffon 1.2 and JPA is there any way to configure the persistence.xml with environmental properties - so I can have a different jdbc.url for dev/test/prod ? i.e. conf/metainf/persistence.xml ...
0
votes
1answer
75 views

Solved: How to make a new window open inside main view in griffon?

I'm Hendra. I'm new to griffon. I use new version of griffon, 1.2.0 I would like to ask if there is a way to open new window (second view) inside the main app window by clicking button or ...
0
votes
1answer
17 views

Griffon 1.2 - mail plugin does not look at mailhost param

I installed Griffon 1.2 and the mail plugin. griffon install-plugin mail I created a test: sendMail(mailhost: '192.168.0.19', to: 'me@home.com', from: ...
0
votes
2answers
276 views

Why there is an “IllegalStateException: Attempt to mutate in notification” exception when using mutual binding with converter?

Maybe I've missed something in understanding Griffon's converter & reverseConverter. What is wrong and how should I fix this? Thanks to @tim_yates for the edit, but I find out that I also got ...
0
votes
1answer
117 views

Binding a textfield to a number with Griffon and JavaFX

I'm using Griffon 1.2.0 and JavaFX, and I'd like to bind a textfield to a number. I thought I'd be able to do it simply by defining the model property as a Float, but it doesn't seem to like that, ...
0
votes
1answer
106 views

Updating Griffon JavaFX combo boxes

I'm trying to update the content of a combo box (using Griffon 1.2.0, with the JavaFX plugin). My model: class MyModel { List monthList = FXCollections.observableList([new DateMidnight()]) ...
0
votes
1answer
34 views

Griffon integration tests with jpa

I'm writing a griffon application with JavaFX and the JPA plugin. I have a service I'd like to test - this service makes use of the JPA plugin (withJpa {...}) and it's this database access that I want ...
0
votes
1answer
20 views

Trying to display value of selected checkbox in griffon

in my griffon app, I can choose the check boxes, but my JOptionPane window shows blanks for the values when I hit submit. Any ideas as to what I may be doing wrong? Here is my model code: ...
0
votes
1answer
59 views

griffon: add a splitPane to my app

I need to add a splitPane textArea to my Griffon app. I cannot seem to find an example of the proper syntax and way to do this. Can anyone help me out?? Here is my view so far: ...
0
votes
0answers
131 views

groovy error: jars unsigned

I have the following error in my app ONLY when I try to run it as a webstart or applet in griffon: net.sourceforge.jnlp.LaunchException: Fatal: Initialization Error: Could not initialize application. ...
0
votes
2answers
164 views

griffon programming error: unable to find class annotation

I am trying to get the hang of griffon/grails/groovy for a project. I get this error at compile time from my Test1Controller.groovy file: [griffonc] ...
0
votes
1answer
73 views

It is possible to add another (chaining) invokeMethod to Groovy class?

I want to do AOP in Griffon's controller by using invokeMethod(), for example: add begin transaction advice to 'before' joint point and commit transaction advice to 'after' joint point in particular ...
2
votes
3answers
395 views

How does javafx compare to swing in terms of features for griffon 1.2?

Technically it has been "possible" to create a javafx/groovyfx based griffon application for quite a while. How does swing compare to javafx nowadays ? Can the latter be generally recommended for a ...
0
votes
1answer
52 views

Customizing the izpack installer with a Griffon app

I've tried using the installer plugin to create an izpack install and although I can create an installer I haven't had any luck configuring the izpack installer. I looked at the sample SwingPad ...
0
votes
2answers
81 views

can't run griffon app

I am trying to run a test app in griffon. I can create the app, but when I go to run it I get the following error(s): 2013-01-25 11:12:02,352 [main] INFO griffon.swing.SwingApplication - ...
0
votes
1answer
41 views

how to use my own subclass of a swing class in griffon

I need to use my own subclass of JTable, but not sure how I would use it in the View, could not find it anywhwere. What do I have to use instead of table here: scrollPane (constraints: "growx, ...
1
vote
1answer
45 views

Capturing key events with Griffon

I'm building a Griffon application, and I want to be able to react to key up events so users can easily navigate forward and back with key presses. Are there any examples around that show us how to ...
1
vote
1answer
141 views

IntelliJ IDEA 12.0 debugger not working with Griffon 1.1.0 project

I'm trying to debug a Griffon 1.1.0 project with InelliJ IDEA 12.0 but breakpoints are not being hit. The command I'm executing is test-app -integration. It runs fine, but without any debugger ...
1
vote
1answer
84 views

Groovy Griffon with Hibernate4 plugin class not found exception

I was looking for a fast and easy way to write a very cross platform desktop application. This leads me to thinking that the JVM is the place to be. Since Groovy (Grails) is used in my workplace I ...
0
votes
1answer
39 views

Griffon View Script Generated from NetBeans Not Showing

I developed a UI in NetBeans that I want to use in my Griffon application. I chose to do so because I don't have enough time to figure out how to get the screen laid out correctly using SwingBuilder. ...
1
vote
1answer
61 views

Build Griffon app for Windows and Linux

I am going to build desktop application for Windows and Linux both. I tried to use Swing with Java, but it's a bit too rough. Right now I have focused on the Griffon framework. Is it possible (I bet ...
0
votes
1answer
44 views

intellij+griffon.0.9.5 No such property: withSql?

groovy.lang.MissingPropertyException: No such property: withSql for class: org.codehaus.griffon.runtime.builder.UberBuilder at ...
1
vote
1answer
54 views

intellij 9 + griffon 0.9.5 dsl script execution error?

dsl script execution error No signature of method:griffon.annotateScope() is applicable for argment types:(java.util.linkedHashMap) values:[ctype.griffon.transform.EventPublisher]
0
votes
1answer
95 views

Save file dialog in griffon

i have a save file dialog in my griffon app. the code is like this: String filename = siteCode+'-'+model.currentClient.name+'-'+computerName+'-'+date+'.csv' File selFile = new File(filename) ...
1
vote
1answer
66 views

CSSBuilder can be used without Griffon?

I have a standalone Swing application and I'm using Groovy as programing language. Trying to apply styles using CSS and searching for some tool for this purpose, I've found CSSBuilder. The problem ...
0
votes
1answer
126 views

Griffon JavaFX sample app can't compile

I can't run the sample app from aalmiray's blog "The Griffon Trove: dialogs and JavaFX". [griffonc] Compiling 1 source file to C:\Users\foo.griffon\1.0.1\projects\sample\classes\main Compilation ...
0
votes
1answer
57 views

Installing a Griffon plugin in zip format from private remote url

Somehow I cannot find and answer to this in griffon documentation nor googling... I have created a griffon plugin. It gets packaged as usual with: griffon package-plugin Then I can install it ...
0
votes
0answers
186 views

Griffon install-plugin failed

Im just trying out griffon and I'm now having a problem in installing plugins.It always says: Failed to install plugin miglayout [offline: false] everytime I run griffon install-plugin gsql and ...
0
votes
1answer
270 views

GORM in Griffon

im just trying out griffon, just wanna ask if is it possible to perform GORM in a griffon application? Do I need to install an additional plugin to make it possible? thanks for those who want to help. ...
0
votes
1answer
236 views

How to install Griffon plugin behind proxy

I am trying to install some plugin into Griffon by issuing this command griffon install-plugin miglayout But I get error: Welcome to Griffon 1.0.0 - http://griffon-framework.org/ Licensed ...
1
vote
1answer
83 views

How Access Config in Griffon

I'm completely new to Griffon and have simple question I surprised I couldn't found the answer... How I can access my per environment settings I defined in Config.groovy in the service. environments ...
0
votes
1answer
104 views

How to replace the griffon app icon for a custom icon

I want to replace the Griffon icon for a custom icon for my App. I have replaced the icons in my view as shown here: application(id: "mainFrame", title: 'selekron', preferredSize: [884, 800], ...
0
votes
1answer
92 views

How can I display an image as the background of griffon application?

I was trying using the CSSBuilder plugin but it seems that it does not support the CSS background image property. I have been searching in google and it seems you can add background image to a swing ...
1
vote
1answer
239 views

How to build a panel dynamically with Griffon

I have a panel in a griffon view MyAppView.groovy panel(id: 'tabpanelWest', constraints: WEST, border: emptyBorder(6)) { boxLayout(axis: BoxLayout.Y_AXIS) button('Add', ...
1
vote
1answer
196 views

How to create a ribbon with FlamingoBuilder in Griffon?

I'm currently trying to create an application with Griffon 0.9.5 and the FlamingoBuilder. I've the changed the value of frameClass in Application.groovy to 'org.jvnet.flamingo.ribbon.JRibbonFrame' ...
0
votes
0answers
111 views

Griffon/Groovy Spring plugin: eager/lazy creation?

in my Griffon project I need to load several beans from different sources (including a jar) and after playing a little bit I realize that beans are created in a lazy mode, no problem with this, so ...
1
vote
2answers
245 views

Griffon SwingPad: cannot add label (groovy.lang.MissingMethodException: No signature of method: javax.swing.JLabel.call()..)

I'm quite new to groovy/griffon and playing around with the SwingPad application. It seems to work fine, but I can't add labels. I've tried button, scrollPane, textArea, panel, all these work fine ...

1 2