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 .. …
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)…
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…
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:…
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",
…
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 ..…
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:…
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…
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…
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…
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 =…
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…
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…
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…
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?