I'm using Griffon 1.5 .. In a view I have a panel defined as ..
panel(background: bind { model.background },
visible: bind { model.stillageComplete },
constraints: 'grow,wrap') {
migLayout(layoutConstraints:'fill')
…
I was trying to make my model strings to be always uppercase, so I tried to use converter and reverseConverter to do this job. Using the mutual option I got hitted by this topic.
Witch leads to my question. Is this the right use case to converter?…
I am fairly new to Griffon and have some experience with Grails.
I have a problem loading a file from the resources directory.
I am using Griffon version 1.4.0.
When I run griffon run-app the following code (inside a Service) to get the location of…
Griffon uses it's lib directory structure to generate resources tags. For example if my project has a structure of:
lib
|
|--linux
| foo.jar
After running 'griffon package webstart' the jnlp file will have the following resource…
We have a project that is web-based, but needs to have significant access to the user's filesystem. HTML doesn't (yet) allow us enough access, and since we are primarily a Grails shop, having the file access code as an applet makes far more sense…
I want to create a production management system to be used by a small manufacturing firm. The system will allow to document different stages in manufacturing of equipment. The requirements are as follows:
1.Non browser based interface.Need something…
I have a project who's business logic is in Prolog (will be rewriting to Clojure) and I would like to make a gui in Griffon. These two should remain decoupled, separate modules.
IntelliJ Idea can make an ant script for building such a project, but…
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 User Interfaces. As Griffon implements MVC…
I'm trying to figure out how to share domain and service classes between a Grails and Griffon projects.
Since this at a 'bird's eye view'/planning stage, I'm wondering if creating a standalone pojo library project would be a good approach for this.…
i have the following code
in the model
@Bindable boolean readOnly
in the view
checkBox(text: 'Read Only', constraints:'wrap',selected:bind(target: model, targetProperty:'readOnly'))
in the controller
new…
I'm learning Griffon framework and I have the following problem:
mvcGroupInit isn't invoked when I call buildMVCGroup(...) - should I explicitly invoke it after this method call? (What about model and view injection then?)
My app:
in view ('main…
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 place.
What I want to do is wrap a set of server…
With a new Griffon (v0.9.4) app, having nothing more done to it than to install plugins that will be needed for the project later, I am unable to griffon run-applet or run-webstart on the project. The error I get is JAR resources in JNLP file are…
Using griffon 0.9.4, I installed maven-publisher plugin but I see no pom.xml generated.
Furthermore, when launching griffon maven-install, I get the following error:
No such property: config for class: MavenInstall
at…