I am using primefaces-3.0.M3 with Tomcat 7.
Spinner always shows blank rather than the value assigned to it.
It shows NaN if up/down button is clicked.
Code is given below:
<p:column>
<f:facet name="header">
<h:outputLabel value="Default Value" />
</f:facet>
<p:cellEditor>
<f:facet name="output">
<h:outputLabel value=""/>
</f:facet>
<f:facet name="input">
<p:spinner id="rangeSpinner" value="#{bean.hm_Range[minIndex]}" min="#{bean.hm_Range[minIndex]}" max="#{bean.hm_Range[maxIndex]}" rendered="#{bean.FIELDTYPE == 2}"/>
</f:facet>
</p:cellEditor>
</p:column>
Is it bug with Spinner ?
Started using inputBox with RangeValidation as the problem was not resolved with primefaces-3.1.RC1 also