jsf - Running XHTML and HTML on the same page? -


is possible run html , xhtml on same page? using jsf , need integrate in template.

if need give them .html extension, you'd need change default suffix .html well. add following entry web.xml achieve that:

<context-param>     <param-name>javax.faces.default_suffix</param-name>     <param-value>.html</param-value> </context-param> 

Comments

Popular posts from this blog

get url and add instance to a model with prefilled foreign key :django admin -

css - Make div keyboard-scrollable in jQuery Mobile? -

ruby on rails - Seeing duplicate requests handled with Unicorn -