tags:

views:

276

answers:

1

I'd like to submit a form using a link instead of a submit input. Is there a tag in Grails that does this?

+1  A: 

I dont think there is a GSP tag for this. You might have to produce your own custom tag lib.

http://grails.org/doc/1.2.0/guide/single.html#6.3 Tag Libraries

Or, just code the html input yourself

tinny
Yeah, I've gone the straight html input route, and just have an onclick that grabs the form and submits.
Kaleb Brasee
Of course, the custom tag is not a bad idea, it would be kinda fun...
Kaleb Brasee