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 application and copied some files across to my project…
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 - Initializing all startup groups: [test1]
2013-01-25…
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. According to the book Griffon in Action, I…
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 within SwingPad. It works ok, but the remove only take…
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)
def fc = new JFileChooser()
…
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
error: BUG! exception in phase 'semantic…
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 locally in my application specifying path to the zip file…
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
under Apache Standard License 2.0 Griffon home is set…
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],
pack: true,
//location: [50,50],
…
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 panel by subclassing the panel. But I am pretty…
I am following this guide Griffon Guide 2.12
I am stuck at 2.2.1. Creating a Project in the line
$ lazybones create griffon-swing-groovy console
I get the following errors:
lazybones create griffon-swing-groovy console …
I am working in a vanilla java based application which is also multithreaded. This project actually parses (more than 10,000 rows for example)large files(csv,xml,etc) and applies business logic and feeds to database. Thats about it. But there are…
we are trying to embed a Swt Gantt into our Griffon application, but for any reason that we dont know, the application does not work. We suppose that probably is something relative about threads but we are not sure.
This is the Swt Gantt:…
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 {
static expose = ['jmx:service=Country,type=special']
…