这是我的xmlns':
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:ui="http://xmlns.jcp.org/jsf/facelets"
xmlns:h="http://xmlns.jcp.org/jsf/html"
xmlns:f="http://xmlns.jcp.org/jsf/core"
xmlns:p="http://xmlns.jcp.org/jsf/passthrough"
xmlns:pf="http://primefaces.org/ui">
这是我的表格:
<h:form>
<h:panelGrid columns="2">
<h:inputText styleClass="input textarea" p:placeholder="topic" value="#{postBean.topic}" />
<pf:colorPicker id="inlineCP" value="#{postBean.color}" mode="inline" />
<h:inputTextarea styleClass="textarea" value="#{postBean.message}" p:placeholder="enter your note here..." rows="4" />
<h:commandButton styleClass="reload btn save_post_btn" action="#{postBean.savePost()}" />
</h:panelGrid>
</h:form>
之后不显示颜色选择器。为什么呢?
答案 0 :(得分:0)
您的pf:colorpicker
是内置模式。如果要弹出窗口,请删除内联部分以及mode
属性。
默认情况下,模式会弹出。