Posts by Nykel • 1 point
4 posts
-
0
votes1
answer39
viewsA: requiredMessage not working on selectOneMenu JSF
Try this: <f:selectItem itemLabel="Escolha" noSelectionOption="true" itemValue="#{null}"></f:selectItem>
-
0
votes1
answer85
viewsA: Growl component "life" attribute only works the first time
Try this: <p:growl id="growl" sticky="false" autoUpdate="true" life="1800"/>
-
0
votes1
answer581
viewsA: Action <p:commandButton does not call Method in Managedbean
Try this: <p:commandButton value="Criar Alternativa" action="#{bancoPerguntasMBean.criarNovaAlternativaQuiz}" update="quizAlternativasPanel" partialSubmit="true" process="@form"…
-
0
votes1
answer83
viewsA: "<p:message" Does Not Display Message in XHTML
You need to capture these messages on the screen: <p:messages autoUpdate="true" showSummary="true" showDetail="true" ></p:messages>