我面临一个奇怪的行为:Primeface selectOneMenu 只打开一次。第一次关闭菜单后,我无法再次打开它......用“h”替换“p”将显示默认菜单,它工作得很好。
编辑:
<?xml version="1.0"?>
<f:view xmlns="http://www.w3.org/1999/xhtml"
xmlns:c="http://java.sun.com/jsp/jstl/core"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:p="http://primefaces.org/ui">
<h:head />
<h:body>
<p:selectOneMenu value="#{...}">
<f:selectItem itemLabel="less than 98%" itemValue="less than 98%" />
<f:selectItem itemLabel="98 - 99,5%" itemValue="98 - 99,5%" />
<f:selectItem itemLabel=">= 99,5%" itemValue=">= 99,5%" />
</p:selectOneMenu>
</h:body>
</f:view>
有谁知道做什么?
先感谢您 :)
PS:我用的是 Chrome 浏览器