1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
<p:messages />
<h:outputText for="angle1" value="angle 1" />
<h:panelGrid columns="1" style="margin-bottom: 10px">
<p:inputNumber id="angle1" value="#{formCalcul.angle1}" size="6" symbol=" °" symbolPosition="s" required="true" />
<p:slider for="angle1" minValue="0" maxValue="360" step="1" required="true" />
</h:panelGrid>
<h:outputText for="angle2" value="angle 2" />
<h:panelGrid columns="1" style="margin-bottom: 10px">
<p:inputNumber id="angle2" value="#{formCalcul.angle2}" size="6" symbol=" )" symbolPosition="s" />
<p:slider for="angle2" minValue="0" maxValue="360" step="1" required="true" />
</h:panelGrid>
<h:outputText for="angle3" value="angle 3" />
<h:panelGrid columns="1" style="margin-bottom: 10px">
<p:inputNumber id="angle3" value="#{formCalcul.angle3}" size="6" symbol=" °" symbolPosition="s" />
<p:slider for="angle3" minValue="0" maxValue="360" step="1" required="true" />
</h:panelGrid> |