I've to render a select when calling a controller function.
class FormController {
def document() {
render """<g:select name="tipo" from="${['','one','two']}" />"""
}
}
it doesn't work.. In the html appear nothing when I replace a div with this function.