私のフォームに
<h:inputText id="name" value="#{pointController.selected.name}" title="#{bundle.CreatePointTitle_name}" required="true" />
<h:inputText id="term" value="#{pointController.selected.term}" title="#{bundle.CreatePointTitle_term}" required="true" />
<p:commandButton styleClass="btn btn-primary" action="#{pointController.create}" value="#{bundle.CreatePointSaveLink}" oncomplete="handleComplete(xhr, status, args)" />
javascript
function handleComplete(xhr, status, args) {
if(args.validationFailed) {
alert("failed");
}
}
どの入力フィールドが入力されていないか、または検証の問題があるかをどのように知ることができますか?