Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Blocker
-
Resolution: Fixed
-
Affects Version/s: 0.2.1
-
Fix Version/s: 0.3
-
Component/s: View technologies
-
Labels:None
-
Environment:grail-0.3-snapshot,jdk1.4/5,debian linux.
Description
I am work on grail,the part of main.gsp is:
<div id="content">
<g:layoutBody />
</div>
<!-BEGIN FOOTER PROPERTIES->
<div id="footer">
Copyright 2006 © Your Name
</div>
</body>
the list.gsp is:
<table width="96%" border="0">
<tr>
<th><g:message code="node.header.name"/></th>
<th><g:message code="node.header.ems"/></th>
<th><g:message code="node.header.ipaddress"/></th>
<th><g:message code="node.header.type"/></th>
</tr>
<g:eachWithIndex in="$
">
<g:if test="$
" >
<tr class="alt">
</g:if>
<g:else>
<tr>
</g:else>
<td>$
</td>
<td>$
</td>
<td>$
</td>
<td>$
</td>
</tr>
</g:eachWithIndex>
</table>
And when I using the list url ,I find out that the html (by gsp) is not complete:like this:
</tr>
</ta
the right should be </tr></table>
Issue Links
- duplicates
-
GRAILS-223
CLONE -GSP fails to write out entire response in Jetty
-
sorry,it look like
GRAILS-223