Questions tagged [griffon]

For questions relating to Griffon, client application platform that uses Groovy and Java.

Official page: http://griffon-framework.org/index.html

GitHub repository: https://github.com/griffon/griffon

149 questions
1
vote
2 answers

in griffon can I 'configure' a view using an external config file ?

In a griffon view I have some code which constructs a panel based on a model parameter .. So I have .. if (model.stillageType.equals("SNP3")){ // build a panel .. } if (model.stillageType.equals("SNP6")){ // build a different panel .. …
user3914455
  • 257
  • 1
  • 10
1
vote
2 answers

How to observe changes in glazedlists in griffon?

I have a griffon 1.5 application with a glazedlist from which i'm trying to observe changes and bind its size() to a field in the view .. in my model I have @Bindable timeslotPicks = 0 @Bindable @PropertyListener (tableChanged)…
user3914455
  • 257
  • 1
  • 10
1
vote
1 answer

GVM installed gradle is not recognized in Linux terminal

Recently installed gradle via gvm and $ gradle build throws the following error message. If 'gradle' is not a typo you can use command-not-found to lookup the package that contains it, like this: cnf gradle Obviously, class path issues, So I have…
Karthikeyan
  • 2,634
  • 5
  • 30
  • 51
1
vote
1 answer

having trouble Integrating griffon project in to eclipse and ant

I have successfully integrated and imported a griffon project (ant based) into eclipse. I have also added griffon_home and user_home variables to classpath of eclipse. Now i am getting error trace in markers tab. Unbound classpath variable:…
UKK
  • 167
  • 1
  • 13
1
vote
1 answer

griffon 2.0 eclipse error

I created a project with griffon 2.0.0.(name: sam) I have installed the cygwin64 along the griffon guide. $ curl -s get.gvmtool.net | bash $ gvm install lazybones bintrayRepositories = [ "griffon/griffon-lazybones-templates", …
jake
  • 669
  • 2
  • 8
  • 14
1
vote
1 answer

Griffon rest plugin giving org.apache.xerces.parsers.AbstractSAXParser class not found ..

First opportunity i've had to use Griffon in a real application and i'm following the GIA book trying the example with Griffon in the front and Grails in the back .. I've build the app but can't get the Griffon front end to run .. The code ..…
user3914455
  • 257
  • 1
  • 10
1
vote
1 answer

Griffon view - can I bind to to array element

In a model I have .. @Bindable contentList = ['A','B','C','D','E','F','G','H','J','K','L','M'] In a view i have def offset = 0 2.times { outer -> 6.times { inner -> panel(background: Color.white, border:…
user3914455
  • 257
  • 1
  • 10
1
vote
1 answer

Griffon mvc groups not being created

I'm experimenting with Griffon and MVC groups .. I have a view which i want to include in a main view .. In my 'subview' I have . package sequenceproto productionPanel = panel() { label('Production Line View') } In the controller which…
user3914455
  • 257
  • 1
  • 10
1
vote
1 answer

Griffon-JavaFX: View throws NPE concerning the model

I am making a foray into the Griffon world, and I have a small lazybones application I downloaded that throws errors. My view looks like so. @ArtifactProviderFor(GriffonView) class PennyPackerView { FactoryBuilderSupport…
Black Dynamite
  • 4,067
  • 5
  • 40
  • 75
1
vote
1 answer

Griffon / Groovy programming error : don't understand

I've rewritten this question as i've localized the problem but don't understand it .. I'm experimenting with Griffon .. In a view class I had some code .. new Timer(1000, { e -> controller.countDown() } as ActionListener).start() which…
user3914455
  • 257
  • 1
  • 10
1
vote
2 answers

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), actionPerformed: controller.getStates) state =…
kulkarni
  • 429
  • 1
  • 6
  • 8
1
vote
0 answers

Griffon & Gsql plugin error

I am new to griffon, and am trying to get somethings working on it. When I run the command install-plugin gsql, and then run-app or test-app, my griffon application, I get noClassDefFoundError "Lgriffon/Core/GriffonApplication". The error occurs…
kulkarni
  • 429
  • 1
  • 6
  • 8
1
vote
1 answer

Griffon groovyfx controller access

Real newbie to the JavaFX scene so here goes. griffon 1.4.0 - jdk 1.7.0_45 griffon plugins ( groovyfx-0.9.1, javafx-0.10.0) I'm trying to implement a simple focus listener to one of my textfields. The idea is that once the textfield is focused I…
zorkle
  • 369
  • 3
  • 6
1
vote
1 answer

Griffon applications - memory usage

I have a question referring to Griffon. Is there a way to decrease memory consumption of griffon applications? Actually the sample griffon application process (just single window with label) takes in Windows ~80MB. Is there a way to change something…
1
vote
1 answer

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?
TheKojuEffect
  • 20,103
  • 19
  • 89
  • 125