我使用的是primefaces 5.3版本,我希望展示一个基本的微调器,我从primefaces展示中复制粘贴。
<!DOCTYPE html>
<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:p="http://primefaces.org/ui"
xmlns:pm="http://primefaces.org/mobile">
<h:head></h:head>
<h:body>
<pm:page>
<pm:content>
<h:form>
<h:panelGrid columns="2" cellpadding="5" class="ui-grid">
<h:outputLabel for="basic" value="Basic Spinner: " />
<p:spinner id="basic" value="#{spinnerView.number1}" />
</h:panelGrid>
</h:form>
</pm:content>
</pm:page>
</h:body>
</html>
增量/减量部分不会显示。