这是我的问题。以下代码未列出任何内容。有人能帮忙吗。代码是从primefaces网站上获得的。
<p:outputLabel for="console" value="Basic:" />
<p:selectOneMenu id="console" value="" style="width:125px">
<f:selectItem itemLabel="Select One" itemValue="" />
<f:selectItem itemLabel="Xbox One" itemValue="Xbox One" />
<f:selectItem itemLabel="PS4" itemValue="PS4" />
<f:selectItem itemLabel="Wii U" itemValue="Wii U" />
</p:selectOneMenu>
答案 0 :(得分:1)
您是否在JSF页面上添加了primefaces 名称空间(xmlns:p="http://primefaces.org/ui"
)?
请参阅以下示例:
<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:ui="http://java.sun.com/jsf/facelets"
xmlns:p="http://primefaces.org/ui"
xmlns:c="http://java.sun.com/jsp/jstl/core">