我正在使用p:selectOneMenu来呈现值列表。当用户单击p:selectOneMenu时,值列表将被绘制在用于显示PDF的“html对象标记”下方。在我附上的图片中可以看出我的问题是什么。
以下是代码:
<p:layout style="width:100%; height:100%; min-height: 600px;" id="layoutShowScannedDocs" >
<p:layoutUnit position="center" >
<p:outputPanel id="opScannedDoc" style="width: 100%; height: 100%; margin: 0px; padding:0px; z-index:20;">
<object id="iframescanneddoc" type="application/pdf" width="100%" data="...url.." />
</p:outputPanel>
</p:layoutUnit>
<p:layoutUnit position="south" size="60" >
<div style="width: 100%; text-align: center;">
<p:selectOneMenu id="listOfValues" widgetVar="listOfValues" value="#{MyBean.selectedValue}" style="float:center;" >
<p:ajax event="change" />
<f:selectItem itemLabel="#{msgs.field_estadoelaboracion_original}" itemValue="1" />
<f:selectItem itemLabel="#{msgs.field_estadoelaboracion_cambioformato}" itemValue="2" />
<f:selectItem itemLabel="#{msgs.field_estadoelaboracion_docpapel}" itemValue="3" />
<f:selectItem itemLabel="#{msgs.field_estadoelaboracion_parcial}" itemValue="4" />
<f:selectItem itemLabel="#{msgs.field_estadoelaboracion_otros}" itemValue="5" />
</p:selectOneMenu>
</div>
</p:layoutUnit>
</p:layout>
如何通过“html对象标记”查看p:selectOneMenu的值列表?
由于