Tagged Questions
The struts-validation tag has no wiki summary.
3
votes
2answers
2k views
Why is struts validation not working for me?
I'm trying to use Struts validation to check various fields entered by users. If anyone is able to help me see what I lack, I would be extremely grateful. Here's what I have:
I put validation.xml ...
2
votes
2answers
83 views
Difference between Struts 1 and Struts 2?
I had been using struts 2, but for few reasons i am shifting (back) to Struts 1 . I would like to know major diffrences between them like about programatic availabilities and general flows.
2
votes
1answer
174 views
Struts validation
i am using struts 1.2.
i need to design a validation that reject charactes %,/,?,<,>.
As you can identify last two characters need to be escaped but i am unable to find any specific rules of regex ...
2
votes
1answer
86 views
Strut2 validation - Select tags
I am having some problems Validating a select tag in one of my forms.
The for code for select is as follows;
<s:select list="assessmentTypes" headerKey="0" headerValue=" -- Select One --"
...
2
votes
3answers
654 views
how to validate dynamic map elements
i have a map and i want to validate in struts 2 validation framework by using expression validation how can i access the elements of the map dynamically?
if Map myMap; how can i validate the map ...
2
votes
3answers
18k views
<html:errors> struts tutorial or example
I'm trying to make a login page in Struts. The idea is to validate if the user exists, etc, and then if there is an error, return to the login page with the errors in red (the typical login or any ...
1
vote
4answers
38 views
Displaying struts validations message
I want to display errors detected in an action class, I use:
errors.add(ActionErrors.GLOBAL_MESSAGE,
new ActionMessage("some_string_in_properties_file"));`
and it works fine. However, I have ...
1
vote
2answers
53 views
Struts 2.2.3 annotations based validation
I am using struts 2.2.3 in web application. I want to use struts2 annotations based validations for the form data submitted from UI. The scenario is:
User fills all the form fields and click on submit ...
1
vote
1answer
232 views
Form validation with Struts 2 + Dojo framework
I'm new on Dojo, and I'm trying to validate a form (like the last one of this example : http://dojotoolkit.org/documentation/tutorials/1.6/validation/), using Struts2 tags, but I can't.
With a ...
1
vote
1answer
368 views
How do i validate a date using combination of fields using the Struts validator
If i have 3 text fields on a form how can i use the struts validator to check that a compination of all 3 fields should form a valid date.
For example
<form action="/test">
<input ...
1
vote
1answer
969 views
How to print a specific actionerror message with Struts2 validation?
When using Struts2 validation, when you put the <s:actionerror> tag in your JSP, the default behavior is to display all the action errors at that point in the page.
Is there a way to display ...
1
vote
1answer
406 views
Struts Action Validation
Hey People. I have been recently validating Struts 2 actions.
In One of my action class, the save method to be precise must have two id's.
That is an assessmenttype id and a course id.
this is what is ...
1
vote
1answer
717 views
How to disable Struts validation under certain conditions
The problem I have is that I need to disable struts validation when selecting certain conditions that will leave input boxes disabled and blank.
Leaving these inputs empty causes the validation to ...
0
votes
2answers
62 views
How to do validation in struts2 when calling action from jquery ajax?
i am calling struts2 action from jquery ajax on success it returns string and on error it should be dispatched to same page and should display errors. i have used following code check it..
...
0
votes
1answer
70 views
Organize validation messages in Struts2 validation(XML)
I am trying to do validations in struts 2 for my current project. I have to group my validation messages. For Eg: If there are 3 fields that are empty and there are 3 other fields whose format is not ...
0
votes
1answer
227 views
requiredif struts validator to check two fields based on condition
I am trying to validate two fields one is a number and other is an url. At least one of this field has to have a valid value. If the number field has value and it is valid number or if the url field ...
0
votes
2answers
285 views
Struts 2 validate field if not empty
There are two fields email and phone number (integer) in a form. The form is validated using the struts validation framework (ActionClass-validation.xml). These two fields are optional, so the user ...
0
votes
1answer
53 views
need the query string from the request to use with the input attribute of the action mapping
I am using struts 1.3.10. I need the query string from the request to use with the input attribute of the action mapping so that when validation fails, the forward goes to correct page without any ...
0
votes
2answers
482 views
Struts 2 : how to display validation message in specific <div> element
I'm new to Struts 2 and facing this problem in keeping the layout of my page:
<s:form action="abc.action"><br>
<s:textfield key="name" label="Name" /><br>
<s:textfield ...
0
votes
1answer
91 views
Validation of IPV4 and IPV6 addresses in Struts 1.2
I'm struggling to find a solution for below.
Validation of IPV4 and IPV6 address using the struts taglibs framework(Struts 1.2).
Any suggestions please,i have searched the net too but i do not want a ...
0
votes
0answers
552 views
Struts2: AJAX Validation + File Upload
I'm trying to perform AJAX validation on a form in Struts 2.2.1.1 using the jsonValidationWorkflowStack. This form submits fine without AJAX; with AJAX I'm getting:
...
0
votes
1answer
245 views
Basic flow of Struts
Well I want to study Struts so I am going to begin with Struts 1,
I would like to know the general flow. What files are required?
Whats the function of struts-config.xml? validation.xml? ...
0
votes
1answer
195 views
How do I validate a password field in Struts 1?
I am making a registration form.
I need to check if both the password fields are the same.
<validator name="twofields"
classname="com.mysite.StrutsValidator"
...
0
votes
1answer
294 views
OGNL parse exception
Can anyone tell me what could have raised this error..?
[ognl.ParseException: Encountered "<EOF>" at line 1, column 1
Was expecting one of:
":" ...
"not" ...
"+" ...
"-" ...
...
0
votes
0answers
247 views
Struts2.0 validation with or condtion
I have to validate two fields with or condition,
for e.g:
if phonenumber and mobilenumber are two field on the page and we have to check the required string on one of the field either user have to ...
0
votes
2answers
1k views
struts2 conditional xml validation
I have what I'd think is a common issue but an entire day of googling hasn't turned up anything useful.
I have a form with a checkbox and a textfield. I'd like to do a regex validation of the ...
0
votes
1answer
54 views
which tag executed at first?<tiles:insert or <tiles:put
in the above codings which one executed at first
0
votes
1answer
799 views
Struts validator validwhen (*this* == null) not working as expected
I am trying to do some semi complex validation on a spring form using struts.
According to the struts user guide the value null in a validwhen clause tests for either an empty string or a null value.
...
0
votes
0answers
1k views
Struts 2 validation using annotation and model driven approach
I'm having trouble figuring out the proper way to get validation to work using annotations and a model driven approach. As you can see I have a simple form:
<s:form action="register" ...
0
votes
1answer
567 views
struts2 validation invoking xml
i have a login-validation.xml which define some basic field validation rules.
however that's not enough for me.
i need to do some more database lookup and i consider this as part of my validation ...
0
votes
2answers
685 views
Strut2 validation, Overriding css_xhtml theme
HI Folks,
I'm using the Struts 2 validation. And for displaying the custom error messages I'm overriding the css_xhtml.. and the validation.js for client side validation. Every thing is going well ...
-1
votes
1answer
53 views
Struts javascript vaidation
Hi friends I want to validate password with confirm password in struts through declarative javascript validation but its not working please helpme.