1 Reply Latest reply on Jun 6, 2007 10:39 AM by smithbstl

    Comments on a Webpage that Uses Seam

    jhimmel

      What is the correct syntax for creating comments on a .xhtml webpage that uses JSF and Seam?

        • 1. Re: Comments on a Webpage that Uses Seam

          I don't think Seam or JSF have anything to do with it. It is just standard xhtml syntax.

          <!-- Comment Here -->

          If you are using Facelets as well, you need to add this context parameter to web.xml

          <context-param>
          <param-name>facelets.SKIP_COMMENTS</param-name>
          <param-value>true</param-value>
          </context-param>