Does someone have any recommendations for PrimeFaces tags? To be specific, I am trying to find equivalent PrimeFaces tag for input type hidden.
Can someone tell, if we have PrimeFaces tag for JSF <h:inputHidden>
input type hidden?
You can use p:inputText and set type="hidden"
<p:inputText value="hello world" id="hiddenfield" type="hidden" />
PrimeFaces use
<h:inputHidden id="..." value="..." />
For example:
<h:inputHidden id="txt2" value="#{sliderView.number2}" />
Reference: http://www.primefaces.org/showcase/ui/input/slider.xhtml
(See line 13th in file slider.xhml
source code)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With