thomashan / zkgrails

Automatically exported from code.google.com/p/zkgrails
0 stars 0 forks source link

Tag <h:a /> is not rendered correctly with the custom content loader #274

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
Tag <h:a /> is not rendered correctly with the custom content loader.

Grails 2.1.0 said that namespace "h" is not found.

Original issue reported on code.google.com by chanwit on 12 Aug 2012 at 1:38

GoogleCodeExporter commented 8 years ago
Issue 273 has been merged into this issue.

Original comment by chanwit on 12 Aug 2012 at 5:03

GoogleCodeExporter commented 8 years ago
The "h" namespace is reserved by Grails.
If we changed to "x", the ZUL will be working fine.

<zk xmlns="http://www.zkoss.org/2005/zul"
    xmlns:x="http://www.w3.org/1999/xhtml">
    <x:h1>x</x:h1>
</zk>

Original comment by chanwit on 22 Aug 2012 at 4:57