Results 1 to 1 of 1

Thread: Tag [findall] does not exist. No tag library found for namespace: g

  1. #1
    Join Date
    Aug 2012
    Location
    Philippines
    Posts
    7

    Question Tag [findall] does not exist. No tag library found for namespace: g

    Title told itself. I am using grails 2.0.1 and I get this error while using this code.

    I want to display the corresponding office name (which is listed in office lists) of office code saved in the user list:
    Code:
    <g:each in="${ userList }" var="i">
    
    <br /> <p><strong>${ i.username }</strong></p> <g:findall in="${ offices }" expr="it.officeCode == '${ i.officeCode }'">Office Code: ${ it.office }<br /></g:findall>
    </g:each>
    -> where officeCode has exactly one correspondent in offices; offices has the property [office, officeCode]

    Thanks in advance!
    Last edited by atan742; Sep 25th, 2012 at 10:13 PM. Reason: elaborated

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •