1
vote
2answers
35 views

Struts2 - Action class configuration

I have one JSP page which has two forms with submit buttons. How to configure different action class those two forms? For example: form1 submit button configuration to classA and form2 submit button ...
1
vote
3answers
65 views

Struts2 populating form data results in array for Map<String, Object>

Action class public class ProductAction extends ActionSupport implements Preparable { private Document product; } Model public class Document { private Map<String, Object> ...
1
vote
0answers
64 views

struts 2 generated error/input page was not decorated by sitemesh

I was using sitemesh 2.4 with struts 2.3.14. Sitemesh correctly decorates the webpages except for one situation: when the form validation fails and struts 2 renders the original input jsp page with ...
-1
votes
1answer
36 views

Forward slashed removed in form id

I am using Struts2(2.3.14) and a forward slash character included in a variable created in the java server-side code is being escaped to _ after using it inside an struts form tag. The code (jsp): ...
0
votes
1answer
156 views

Directing via an Action to the same JSP page currently loaded, reloading the user's input Data Struts 2

I currently have a JSP Page with a form in it. On submition of this form I want to reload this same page with the form being populated with the user input values before the form was submitted. The ...
3
votes
1answer
47 views

File Missing In Filesystem, Catch On Form Submit

I have a form that I am submitting via jQuery's .ajaxSubmit() function. This form includes a file control, and it has been raised as a possible point of failure that if the file selected is renamed, ...
1
vote
2answers
83 views

Is it valid to use html <form> tag instead of struts2 <s:form> tag?

I want to use <form action="someClass"> <s:textarea name="name" label="Name"/> <s:checkboxlist list="{'Male','Female'}" name="gender" label="Gender"/> </form> instead of ...
2
votes
1answer
95 views

Error in Form Action attribute struts2

My login.jsp is in the web folder. And action for this is specified as : struts.xml <package name="admin" extends="struts-default" namespace="/secure"> <action class="actions.LoginAction" ...
-3
votes
1answer
81 views

Banking Applications needs Auto save? [closed]

We are developing a banking application.It's internal project of the bank.The application has to capture huge data to process. So auto save is recommended approach to capture? How to perform ...
0
votes
3answers
494 views

Submit two html form in jsp using single submit button? tried ajax but not working

My page design is such that I have to use two forms that submit on single click and then saved to database and vic-versa. I am using this on a JSP page with Struts2 Framework I have tries the ajax ...
0
votes
2answers
89 views

Struts 2 - Date instance become String

when I submit the form, input error is occur. JourneyDate is instance of 'Date'. But ,here it become String which is not accepted by the setter and getter. <s:hidden name="JourneyDate" ...
0
votes
2answers
274 views

How to use html5 form validation properties using struts2 UI tags

I want to use HTML5 form validations like 'required', in struts2 UI tag . I also have checked struts2 core jar file which shows that dynamic attribute is true for s:textbox. but if i use like ...
-1
votes
1answer
188 views

How to send a row in table into struts action?

I have displayed a table using struts iterator tag. Now every row has an edit link at the end. I need to be able to send that row into action when the edit button is clicked . But I am unable to ...
1
vote
2answers
174 views

Struts2 Tag retrieve a Single fieldError as text only

How do I retrieve a single fielderror without any formatting? all I want just the plain text message without any formatting in a jsp is that possible? if so, how? this can be done in an action but ...
0
votes
4answers
564 views

Struts2 Tags: Fielderrors tag

I am currently using struts2 tags for my form, and to show its error messages. My question is that the default markup for showing error messages in struts2 tags is the usage of <ul> tag. is ...
-3
votes
1answer
129 views

Struts2 How to require a user to upload a file [duplicate]

Possible Duplicate: Struts2 Require the user to upload a file validation How do I require the user to upload a file in Struts2 ? let's say he's going to upload an image but he press the ...
0
votes
1answer
193 views

Struts2 Require the user to upload a file validation

I am uploading a file to my Server using Struts2 file upload, my question is that how do I specifically tell that the it is a requirement to upload a file? here is my interceptor. <action ...
0
votes
1answer
257 views

Struts2 JQuery plugin cannot call split of undefined

I kept on receiving this error on my form each time I send an ajax request to the server Uncaught TypeError: Cannot call method 'split' of undefined I am using Struts-Jquery plugin. Here is my ...
0
votes
1answer
308 views

Combining Validate Method and xml validation in Struts2

Is it possible to combine both xml validation and Validate method for form validation? my general thought is that the xml validation will just mostly contain how long should a given field name is, ...
0
votes
2answers
918 views

No Result Defined for action. While Validating Form contents on an xml

I am creating a simple registration form from struts2 using xml file validation. my problem is that each time I click submit on the form. this error shows up. WARNING: Could not find action or result ...
1
vote
4answers
1k views

Struts2 xml validation is not working

Here is my Register-validation.xml <!DOCTYPE validators PUBLIC "-//OpenSymphony Group//XWork Validator 1.0.2//EN" "http://www.opensymphony.com/xwork/xwork-validator-1.0.2.dtd"> ...
0
votes
2answers
538 views

Styling Struts2 textfield tags

I have this form. <s:form action="register"> <s:textfield class = "formfield" name="userBean.username" label="User Name" /> <s:textfield class = "formfield" ...
0
votes
2answers
168 views

Struts2 Form Tag

I am currently creating a web-application that is using Struts2 tags for form submission. One of the problem I see is that when I view page source it clearly shows my code, specifically how struts2 ...
0
votes
1answer
179 views

Just setting the last parameter from form to action when populating, why?

This is my form in jsp. When I submit it, in the server log I can see all the parameters with their values, but when I do a println of the object just the last one (alphabetically) was set. ...
0
votes
2answers
297 views

How to handle Action's form data that is not coming from JSP in Struts 2?

I have a form in search.jsp <s:form name="employeeSearchForm" action="searchAction" method="post"> <s:textfield name="id" label="Employee ID"/> <s:textfield name="name" ...
0
votes
2answers
593 views

Struts 2 missing reset method?

I am migrating a project from struts 1.3 to struts 2.0. Now I have read through various resources available on web but could not find a struts 1.3 reset() form method alternative in struts 2.0. My ...
2
votes
6answers
2k views

Struts 2: updating a list of objects from a form with model driven architecture

I already searched and found several approaches here, but I can't get them working for my project. I want to show an edit page for a list of objects, which should all be updated at once. I use the ...
1
vote
2answers
228 views

Creating form elements at runtime in JSP

Hi I am creating an application where for each user form elements being displayed could be different (type of element, number of element, label of the form element, order of appearance : all these ...
0
votes
3answers
137 views

Struts 2 form customization

I use Struts 2 to create form in my application. I am struggling with a form customization. I 've tried with theme simple, xhtml and css_xhtml but i am not able to find a solution. Struts display the ...
0
votes
2answers
223 views

How to send the productIDs from a product catalog to java class?

(This question is that that difficult but I could not solve it yet) I have a product catalog that is showing different values using < div > tag, there should be a button for user to add the chosen ...
0
votes
1answer
140 views

How to receive values from a form?

Hi How can I receive a value from the form on my JSP page? what to do ? the JSP has a form once the user click on submit the values of form should be sent to java class but the java class does not ...
1
vote
0answers
26 views

Formatting a struts2 generated form [duplicate]

Possible Duplicate: How to disable struts 2 Table generation for Form? I have generated an HTML form using JSP/Struts2 but not sure how to format it. Another issue is that it created a ...
1
vote
0answers
482 views

Multiple dynamic divs with forms in jsp and redering the response in corresponding div

I placed code of 5 jsps into a single jsp using divs. I have a jsp which is divided into two main divs left and right. Left div contains the links to the divs of right (contains5). Whenever we click ...
1
vote
1answer
476 views

Struts 2 - Generated form action

I create a form with Struts 2, using the following code : <s:form id="form" onSubmit="getParameters();"> I don't understand why the generated is the following one : <form id="form" ...
4
votes
1answer
242 views

How to access a session ArrayList by index in a form?

I have a session variable which is of type ArrayList. In the jsp page I need to access it by index to create a form dynamically, but after I submit the form I found out that the session ArrayList's ...
0
votes
1answer
2k views

Struts2 JQuery : Ajax Submit Form, Server Form Validation and Success Redirection

I have the following layout in my web applications using struts2 framework. main_layout.jsp <html> <head> jquery is linked here <script> $(document).ready(function (){ ...
0
votes
1answer
369 views

struts 2 TokenInterceptor Form Tokens

In my web application, I am using Cookie Based session, and thus that session is being shared among all browser tabs, Is there a way to restrict user to have access of application in one tab at a ...
0
votes
1answer
156 views

How to display everyone of the label and the radio choices in its own line?

I'm using Struts2. By default, when using the struts form, the label and the choices are displayed in the same line. How can I do to make the label in a line, and every radio choice in its own line? ...
0
votes
1answer
270 views

No action execute in struts2 form when try submit him

When i click a submit button in my form (struts2), no action gets executed. What could be wrong with this files? struts.xml: ...<action name="EditMessageAction" ...
0
votes
1answer
242 views

freemarker select tag

Is there a way to check freemarker <#if> condition inside the <@s.select tag>? for example i need sometething like <@s.select id="myId" name="travellerModif[2].type" ...
0
votes
2answers
234 views

preselected option in struts2 (freemarker)

I cannot make my freemarker struts2 select tag to show the default value for the object related list of options. In my action I have: private List<CodeLabel> modifRoomTypeOpt; inside I have ...
0
votes
2answers
131 views

Is there something like requireddate for struts2?

I'm trying to validate the birth date of a user. My jsp page is this: <s:form> ... <s:date name="birthDate" var="formattedVal" /> <s:textfield value="%{#formattedVal}" key="birthDate" ...
1
vote
1answer
162 views

preselect select field with freemarker

In my struts2 action that prepares the ftl page i have private static List<Product> listOfProducts; with getter and setters. This list is filled with products. First product in the list has ...
2
votes
0answers
206 views

struts2 input iteration

Im using struts2 with freemarker template and i want to iterate over inputs and save them in search criteria. In my action i have private SearchCriteria criteria. with method setCriteria and get ...
0
votes
1answer
86 views

Replacing the Modified input fields with Original values on clicking “Cancel” button

I have a form, which when loaded retreive the members profile details from the table and display in the form, the user can alter the form fields and save using "Update profile" button, this ...
1
vote
1answer
255 views

How can I use i18n in a combobox using struts2?

I have a form with a combobox to allow people select if they are a male or female. I want to change Male and Female for the same words in other language. My actual combobox is: <s:combobox ...
0
votes
2answers
534 views

how to change the value of textfield + jQuery + Struts2

I have two textfield A , B : i want to do something like when i enter something in textfield A,this value will be use it in some action and result will be displayed in textfield B without clicking ...
1
vote
1answer
514 views

Struts2 Load ALL values in a s:select tag into a HashMap in the action class

I have researched enough on this topic sans any luck :-( My requirement is to load a HashMap that is declared in the action class from the jsp form that has a s:select tag. Here is my action class ...
1
vote
0answers
153 views

Accessing Spring MessageSource from Struts tags

My first question here, but hope it counts. I'm rather new to Struts and Spring so bare with me please. I'm using Spring 3 for IOC and Struts 2 for MVC (so I'm using Struts Actions for all the work, ...
1
vote
4answers
4k views

Submit a form when page loads - struts 2

I want to submit a s:form when page loads. here is my code : <s:form id="login_form" action="" method="post"> <s:textfield label="User name" id="login_form_username" ...

1 2