アイテムが選択された場合に別のドロップダウンメニューが表示されるドロップダウンメニューを作成しようとしています。ここにコードがあります......どんな提案もかなりの価値があります....ありがとう
<p:selectOneMenu style="width:120px;" id="projectType" value="#{projectManageBean.pmaster.pType}" required="true"
requiredMessage="Project Type is required." >
<f:selectItem itemLabel="Select One" itemValue="" />
<f:selectItems value="#{projectManageBean.projectList}" var="ptype" itemLabel="#{ptype}" itemValue="#{ptype}" />
<p:ajax event="change" listener="#{projectManageBean.projectTypeChanged}" update="projectTypeDetai" process="@this"></p:ajax>
<!-- <f:ajax render="@"></f:ajax> -->
</p:selectOneMenu>