In my Grails controller I\'m responding to an AJAX call and using render to return the text:
render
def ajaxRandomPersonName = { def person = get a ran
Resolved: Adding contentType results in the template not being rendered:
render text: "Name: ${person.name}", contentType: "text/plain"