I am using the p:panelMenu component with p:submenu and p:menuitem in my xhtml .But the items embedded inside the p:menuitem dont seem to appear on the page.On Inspecting Network traffic in chrome it seems to be unable to find two css undefined.css.jsf and undefined.js.jsf.
host/OTV_JSF_Spring_Hibernate_Project/javax.faces.resource/undefined/undefined.css.jsf?ln=primefaces
host/OTV_JSF_Spring_Hibernate_Project/javax.faces.resource/undefined/undefined.js.jsf?ln=primefaces
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:p="http://primefaces.org/ui">
<h:head>
<title>Welcome to OTV_JSF_Spring_Hibernate_Project</title>
<style type="text/css">
h1 {
font-family: "Times New Roman";
font-size: 7px;
}
pre {
font-family: "Times New Roman";
font-size: 25px;
font-style: bold;
align: center;
}
</style>
</h:head>
<h:body>
<h:form>
<p:layout style="min-width:300px;min-height:700px;" id="layout">
<p:layoutUnit position="east" resizable="true" size="350"
minSize="40" maxSize="350">
<p:panelMenu style="width:400px">
<p:submenu label="Navigations">
<p:submenu label="Links" icon="ui-icon-extlink">
<p:submenu label="PrimeFaces" icon="ui-icon-heart">
<p:menuitem value="Home" url="http://www.primefaces.org"
icon="ui-icon-home" />
<p:menuitem value="Docs"
url="http://www.primefaces.org"
icon="ui-icon-document" />
<p:menuitem value="Download"
url="http://www.primefaces.org"
<p:panelMenu
icon="ui-icon-arrowthick-1-s" />
<p:menuitem value="Support"
url="http://www.primefaces.org"
icon="ui-icon-wrench" />
</p:submenu>
</p:submenu>
</p:submenu>
</p:panelMenu>
</p:layoutUnit>
<p:layoutUnit position="center">
<h1>
<font size="6"><h:outputLabel for="createform"
value="Create New Form" /></font>
</h1>
<hr width="98%"></hr>
<table>
<tr>
<td width="30%"><pre>
<h:outputLabel for="name" value="Name of the form : " />
</pre></td>
<td align="left"><p:inputText id="name"
value="#{questionMB.formName}" label="Name of the form">
</p:inputText> <p:message id="formMsg" for="name" display="icon" /></td>
</tr>
<tr>
<td width="30%"><pre>
<h:outputLabel for="desc" value="Description of the form : " />
</pre></td>
<td align="left"><p:inputTextarea rows="4" cols="60"
value="#{questionMB.formDesc}" /></td>
</tr>
<tr>
<td width="30%"><pre>
<h:outputLabel for="question" value="Question : " />
</pre></td>
<td align="left"><p:accordionPanel>
<p:tab title="Godfather Part I">
<h:panelGrid columns="2" cellpadding="10">
<p:inputText id="question" value="#{questionMB.questionText}">
<p:ajax event="blur" update="questionMsg" />
</p:inputText>
<p:message id="questionMsg" for="question" display="icon" />
</h:panelGrid>
</p:tab>
</p:accordionPanel></td>
</tr>
<tr>
<td width="30%"><pre>
<h:outputLabel for="answer" value="Answer Type : " />
</pre></td>
<td align="center"><h:panelGrid columns="2" rows="1"
style="margin-bottom:10px" cellpadding="5">
<p:selectOneRadio id="options" value="#{questionMB.answerType}">
<f:selectItem itemLabel="Text field" itemValue="Text field" />
<f:selectItem itemLabel="Combo box" itemValue="Combo box" />
<f:selectItem itemLabel="Radio button" itemValue="Radio button" />
<f:selectItem itemLabel="Check box" itemValue="Check box" />
<f:selectItem itemLabel="Date box" itemValue="Date box" />
<f:selectItem itemLabel="Y/N Button" itemValue="Y/N Button" />
</p:selectOneRadio>
</h:panelGrid></td>
</tr>
<tr></tr>
<tr></tr>
<tr></tr>
<tr>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
<td><p:commandButton id="addQuestion" value="Save"
action="#{questionMB.addQuestion}" ajax="true" /> <p:commandButton
id="submitQuestion" value="Submit"
action="#{questionMB.saveandsubmitForm}" ajax="false" /></td>
</tr>
</table>
</p:layoutUnit>
</p:layout>
</h:form>
</h:body>
</html>