1
vote
1answer
170 views

Grails custom taglib cannot use custom artefact during integration test

I have written a plugin containing a custom TagLib which itself uses a custom artefact instances. The taglib works exactly as expected when the plugin is included in an application. However, I am ...
0
votes
0answers
370 views

Inserting custom taglibs into grails scaffolding views

I have created a custom tag-lib that renders some html code (2 buttons). I have included the taglib into the src/template/scaffolding/list.gsp using the following tag: <mlb:addExtraButtons ...
1
vote
1answer
473 views

grails 2.0 - formatDate using fieldValue, is this a bug in Grails 2.0?

In my Grails 2.0 the following GSP code works: <g:formatDate date="${merchantTrans.dateCreated}" /> But the code <g:formatDate date="${fieldValue(bean: merchantTrans, field: ...
3
votes
1answer
385 views

Nesting custom taglibs in grails 2.0

I expected the following to ouput 1 2 GSP <test:test1> <test:test2> ${test1} ${test2} </test:test2> </test:test1> TagLib class TestTagLib { static ...