Search Results

2
votes

How to check if element in groovy array/hash/collection/list?

.contains() is the best method for lists, but for maps you will need to use .containsKey() or .containsValue() [a:1,b:2,c:3].containsValue(3) [a:1,b:2,c:3].containsKey('a') …
2
votes

Getting Groovy’s Grape Going!!!

There is still some kinks in working out the startup/kill switch routine. For Beta-2 do this in it's own script first: groovy.grape.Grape.initGrape() Another issu …
0
votes

How to show a second MVC group as a dialog box in griffon

The easiest way would be to use the view panel as the root of a dialog in the parent MVC group. In the view for the group that yor code snippet is the controller of you could do something like this …