1
vote
2answers
44 views

JSF validator method results in duplicate FacesMessage shown in p:messages

I have two PrimeFaces p:calendar components, one representing a begin and the other representing an end date. I want to run a validator method now whenever one of them changes. Here's the end date ...
0
votes
0answers
19 views

Replace keys of a resource bundle in MessageFactory class under JSF

JSF uses MessageFactory.getMessage(String messageId,...) to look up a value based on a resource bundle. The parameter messageId represents the key to be looked up, and all the keys are pre-defined by ...
0
votes
1answer
10 views

How to customize the error message on programmatically created LongRangeValidator?

I created a long range validator but I am not able to find a way to customize the corresponding message text. I am using JSF 2.x and ApacheMyFaces. Thanks in advance. if ...
0
votes
0answers
20 views

JSF Range Validator - access properties

I am using JSF 2.x. I want to bind a validator to my programmatically created elements. Unfortunately this did not work, if Validator.validate is invoked, the minimum and maximum property value is 0. ...
0
votes
1answer
42 views

How to cross validation phase and get checkboxes of dialog box selected?

In my project I have a dialog box where I have some checkboxes for items inside a datagrid and a command button which will add that into a list. And in the page I have some fields with JSF ...
3
votes
0answers
150 views

p:dialog gets closed on validation error of a submit with ajax=“false”, how to keep dialog open?

I have the following <p:dialog> <p:dialog id="dlgDownload" header="#{appmsg['header.download.popup']}" widgetVar="downloadDlg" resizable="true" modal="true" closable="true" width="640" ...
0
votes
1answer
75 views

Validation messages do not show up anymore

I need to validate if a <p:spinner> value is between a set range. <p:spinner id="minutes" min="0" max="1000" value="#{printerSettings.t}" size ="1"> <f:validateLongRange ...
0
votes
1answer
39 views

How to validate an value submitted by a spinner

i am finishing off a web app, and want to put validation on my spinner, it should only let the user submit a value of between 1 and 50, however what i want is if a user deleted the value and for ...
0
votes
1answer
46 views

Conditional validation without binding attribute

I'm dealing with a legacy code base and come across a situation when it's necessary to validate a field "fieldToValidate" if some other field "otherField" has some value (otherwise field is not ...
0
votes
2answers
91 views

JSF custom message for validation error

I'm using GlassFish 3.1.2.2 and I want to define a generic validation message template to not include field identifier/label. I've found couple of related topics on StackOverflow but none of these ...
0
votes
1answer
89 views

JSF 2 and manual validation with JSR 303 - how to track fields?

I want to use JSR 303 (Hibernate Validator) in my JSF 2 project. However, I have complicated forms and field-level validation is not sufficient. I need to use many @ScriptAssert annotations at ...
3
votes
1answer
168 views

How validate two password fields by f:ajax when losing focus of second field?

I used to validate two passwords, checking if they're the same, this way : Password: <h:message id="m_password" for="password" /><br/> <h:inputSecret id="password" ...
1
vote
1answer
34 views

CustomRequiredvalidator did not get triggered

I am confused because my custom required validation did not get triggered. I got a class which creates my HtmlTextInput element programmatically and adds the validator. Moreover I got my custom ...
1
vote
0answers
71 views

How to bind custom jsf-validators to programmatically created HTML Elements?

I am using JSF 2.0 and want to attach my custom RangeValidator to a HtmlInputText. In my backing bean, there is a snippet which creates the HTMLInputText. If I add a default validator, my code works ...
0
votes
1answer
91 views

Primeface validating group of inputs

I am using primefaces and JSF. I have an optional address fields. If user fills any one of the fields (eg zip or name) then all other fields are required. What is best way to do this validation.
2
votes
1answer
72 views

Using f:validateLongRange in ui:repeat

I'm using com.sun.faces version 2.1.18. In my application I have a dynamic list of questions. I use <ui:repeat> to render each question. Depending on the type of question I render a type of ...
0
votes
1answer
139 views

Programmatically created form and validation, unhandled faces messages

I create a form by using Apache MyFaces library. The form is related to the jsf-page by a binding. Moreover I built a TestValidator-class which implements Validator-interface. My form got shown, I ...
1
vote
0answers
306 views

JSF Primefaces form errors after failed validation

I am new to JSF/Java in general but have been trying to solve this for a few days now. I have a form which gets stuck on validation. When all the entries are valid, it all works well. The minute I ...
0
votes
1answer
87 views

Data Validation on multiple date fields

I want to validate two fields, that are type of Date (exactly TimePicker) at the same time. I found my solution here: Compare two fields that use same class BUT.. I'm need to have TimePicker control ...
0
votes
0answers
62 views

Display JSF2 messages depending on the user language, not on to the JVM?

I'm using JSF2, I have a registration form. User can switch the language (English...). I manage different languages by using resource-bundle in the configuration file faces-config.xml. So far so good. ...
2
votes
0answers
61 views

How to pass the event parameter when attaching an listener to a composite component

I tried to attach an event-listener to a composite component as follows: <cc:interface> <cc:attribute name="listener" method-signature="void ...
-2
votes
2answers
151 views

How to validate a field in jsf

I have many fields in my addNew.xhtml page. I have to do validations of the fields on client side. One of the field is city. I want to get a validation error if I don't enter city which says city ...
1
vote
2answers
274 views

primefaces jsf hibernate - in validation phase : failed to lazily initialize a collection

I'm struggling on a problem which happen in the JSF validation phase, somehow that validation is doing something that hibernates doesn't like (failed to lazily initialize a collection, no session or ...
0
votes
1answer
94 views

Icons with a FacesMessage when validating

PrimeFaces/JSF 2.0 When you use p:message.... and say your outputText has required="true", you see the error icon in the message displayed to the right of the field if the user leaves the field ...
0
votes
3answers
255 views

Escape a primefaces/jsf page that has required fields

I have a jsf page with <h:inputText required="true"> attribute. When I click on my add button, I want to see an error if the field is blank. I have a <f:message> to display this. But how can ...
0
votes
3answers
167 views

JSF: how to hide outputText when validateLongRange fails

I have the following code: <h:form> <h:inputText id="inputField" value="#{bean.myProperty}"> <f:validateLongRange minimum="#{bean.minimum}" ...
0
votes
0answers
138 views

Validate a list in validator phase in JSF?

In my jsf project I have an inputText for which I have set required="true" and a selectOneMenu from where I select any value and add it to datagrid. I want to do validation of datagrid which if not ...
0
votes
0answers
85 views

javax.validation.validationException : At least one custom message must be created

according to checkCase constraint validator written in hibernate JSR 303 chackCase contraintValidator public boolean isValid(Group group, ConstraintValidatorContext constraintValidatorContext) { ...
0
votes
1answer
96 views

How to skip validation for ajax call?

I have an h:inputText, h:selectonemenu and commandbuton. Inputtext is mandatory field and I have defined it as immediate="true". Then I when I click the button I want to pass current value of ...
0
votes
1answer
147 views

Validation error message persists after refreshing the page

I am trying to learn JSF. I have a simple Hello.java with annotations @ManagedBean @RequestScoped... On index.xhtml I have: <h:inputText id="username" value="#{hello.name}" ...
0
votes
1answer
162 views

JSF : How create custom validator to birthdate?

I would like to create the selected birthdate with a custom validator. This is my view: <h:selectOneMenu id="birthdate_day" value="#{userc.userb.b_day}"> <f:validator ...
0
votes
0answers
60 views

How to enter to my function after validation fails in primefaces

I have two radio buttons and you are able to select just one and it works fine, but after the validation fails you can select the two radiobuttons. I´m using primefaces 3.1 and glassfish, apache ...
1
vote
1answer
80 views

How to show h:message based on condition?

I am making multi-language website where I am using Validator for one field. After validation, I receive response as err002, err003 and based on this error I would be showing the respective error in ...
0
votes
2answers
56 views

Validator not working properly

I have a JSF validator which is used to validate input from form. When I insert simple string or duplicated string it's working properly. But when I don't enter anything the proper message will be ...
0
votes
2answers
97 views

How to validate uniqueness in JSF and get a message to the user?

I need to check the uniqueness of a field in my application. I tried to use Hibernate @Unique constraint but it shows a stacktrace, but no error message in the user form. My next solution would be ...
0
votes
0answers
127 views

JSF / RichFaces: how to validate combined textField / ListBox?

I need to present the user a combined textfield and listbox. It is required to enter a value for one, but not both of them. The idea behind it is to have a list of most commonly used values but still ...
0
votes
0answers
131 views

Validation in p:dataTable not outcomming message and rowEdit event's p:rowEditor not submitted

I have a <p:dataTable> which works with <p:cellEditor>if i have a validation on any row in the <p:dataTable> then when pressing the check icon of the <p:rowEditor> nothing ...
0
votes
0answers
69 views

bean validation get parameter jsf

Using bean validation like: @Size(max = 5) private String name; How do I retrieve the max value to use within my JSF site? For example to set maxlength value in input text component.
1
vote
1answer
131 views

cascading second selectonemenu not calling the setter

After selecting the system(the first selectonemenu), I see that the dropdown of section is populated, but when I select the section, I do not see the setter being called. and hence though I submit the ...
0
votes
2answers
283 views

Validation with JSF 2 only wanted on submit

I have an issue with validation, as I only want validation to take place when the submit button is clicked on the screen, not when another button is clicked. In the displayed page option1.faces is ...
0
votes
1answer
93 views

How to validate blank field on bean side in jsf?

I have some input fields and some selectonemenu, I need to validate them and based on their validation I have to show a error message for whole page. I have to also show message with that inputfields ...
0
votes
1answer
360 views

Skip to next <p:wizard> tab without validation

I'm using <p:wizard> with several tabs. Some of the tabs contain inputs that needs validation, for example credit card number. But the entire tab can be skipped. How to do the skip to next tab? ...
1
vote
0answers
79 views

Validation of JSF selectManyListbox backed by Set

I have a problem with validation in my JSF application: I have a <h:selectManyListbox> which is backed by a Set in the bean. The Set is annotated with @NotNull and @Size(min=5, max=9999). My ...
2
votes
1answer
142 views

MaskInput don't work after submit form in JSF

I have this maskinput definition: <ui:define name="additional-javascript"> <h:outputScript name="jquery.maskedinput-1.3.min.js" library="javascript" /> <script> ...
2
votes
1answer
294 views

JSF - Validation fails on SelectOneMenu (error is not valid) - Hibernate related?

I already read a lot of questions here about this same problem, and I can assure you that is not the EQUALs method, and also, it is not a problem as the bean scope. So, lets see what is happening. I ...
1
vote
1answer
72 views

Checking for Required Field in Custom Vaildator

I've got a custom validator set up to run on the elements of a composite component. It looks like this: <myproject:myComponent> <f:validator validatorId="customValidator" ...
0
votes
2answers
121 views

How to change css class for the inputfield and label when validation fails?

Suppose I have a username to validate, in this case I need to show username outputText and username inputText field in red color when validation fails along with error message. I tried to bind all ...
1
vote
1answer
699 views

How to trigger args.validationFailed in PrimeFaces oncomplete

When the Save button is pressed, the data from the actionsDialog should be validated. If the required information is entered and valid, a second dialog called reasonDialog would be displayed. ...
2
votes
1answer
249 views

p:dialog does not fire ajax close event when using dialog.hide()

I'm using <p:dialog>. After submitting the form therein, I use dialog.hide() and it fires the ajax close event listener method which will update a List<E>. It was working properly, but ...
0
votes
1answer
620 views

JSF skip Validation without immediate=true

I have multiple forms, where I have mandatory fields and optional fields. To "submit" such a form I require the validation to be executed, which works fine. To "cancel" such a form I use the ...

1 2 3 4 5