Tagged Questions
0
votes
2answers
38 views
Retrieve data from handsontable to Struts2 Action via JSON not working
I am using struts2-json plugin to generate JSON data and Ajax to populate table (handsontable) with data from that JSON (according to the source).
Now, I need to retrieve data from table to Struts2 ...
0
votes
1answer
38 views
ajax is not capturing actual response from Struts2 action class
The below ajax method firing method in action class and action class failing (with null pointer exception with all stacktrace); but my ajax always goes into success: function.? Please let me know why ...
0
votes
0answers
50 views
Double select with struts2, jQuery and JSON sj:select
How can i populate 2 sj:select lists from one ajax call.
in this example the second list is after the first is select. In my example the first object list containing another list which i am populating ...
-2
votes
1answer
54 views
how to call displaytag without loading the whole page? [closed]
this is where i call the displaytag table with jQuery
function chargerTable(){
jQuery.ajax({
url: 'consultValueTable?table='+$("#idParametre").val(),
success: ...
-1
votes
0answers
62 views
Struts 2 dojo div targets not working in IE
I'm using Struts 2 dojo div targets, the response that I get is not targeted to the div, instead it opens up as a full page and I'm getting djConfig undefined erorr in developers tool console. I have ...
0
votes
0answers
51 views
Response is null in ajax call using jquery though set successfully in java
I am getting null response in ajax.Below method in java is called correctly and it writes success message in jsonObject. But in javascript response is returned null.Please help me understand what I am ...
0
votes
0answers
107 views
How to make button appear and disappear based on option selected in dropdown in Struts 2?
In my jsp I have a dropdown in which when I select User Defined option I want Next button to appear instead of the Finish. The Cancel button always remains irrespective of the option selected. How can ...
-1
votes
1answer
134 views
Struts2 ajax theme not working for in IE10
We have a running struts 2 application, in that application we are using dojo ajax theme to save and retrieve data.
This is working for all major browsers except for iE10. In IE10 the ajax request ...
-1
votes
1answer
84 views
ajax downloading file with struts2
I am using js to download file from a server with struts2. Everything works fine except that sometimes generating of the file could take few seconds and I would like to show a loader gif from the ...
2
votes
2answers
167 views
Loading Ajax content in Struts2 using dojo-plugin
I have a simple problem in loading the contents through ajax call in struts2(using struts-dojo plugin) ,It is loading all the html contents from the page properly but if there is any inline javascript ...
1
vote
1answer
280 views
Displaying JSON data in dropdown list in struts2
I was doing good with my code. But i am struck at one problem. I want to populate the json data in my select box in struts2.
What i am doing is..i am sending the ajax request on the click of button ...
1
vote
1answer
554 views
How to get the json result from struts2 action methode thru ajax(Using jquery)
I have used below code to display countryCode in front end onchange of country from the dropdown thru ajax.But I am not able to get the json result from the action class to the front end. Can any one ...
0
votes
3answers
110 views
How to call Action using Ajax in Strut2
On Continue for the below Action call from ajax in struts1.2
I am trying the same with struts2.
i have tried with following code:
function onChangeProduct(){
var name = $('#product').val();
...
0
votes
1answer
162 views
How to handle exception thrown by struts2 when call actions by ajax?
I use jquery post method to call save method in DepartmentAction, if I save a dup department(dup department is not allowed in db), the save method throws an Exception, but user can't get any ...
1
vote
0answers
58 views
Dojo data-dojo-type attribute does not work with struts 2 form
I have upgraded from dojo 1.5 to dojo 1.8.1. Unfortunately struts form does not work as expected. Here is my html:
<s:form id="formId" action="my.action"
cssClass="floatForm" ...
0
votes
1answer
150 views
why updated values are not getting post in jqgrid
I am implementing jqgrid using struts2-jqgrid-plugin. My problem is when I change a value of hidden field in form-element ,the updated values are not reflected when i post these hidden field with my ...
1
vote
4answers
380 views
How to submit values to backend and receive the results usign jQuery
I am using the following jquery code to receive the values
and validate the values which perfectly works. Then send them to my java application and receive the responses, but it does not send the ...
1
vote
0answers
381 views
Update the content of a page using jquery ajax call to a struts action
I am displaying a chart on a jsp page by reading the contents from database. I want to change the chart data based on the items selected from a checkboxlist on the page using ajax.
The script is as ...
2
votes
3answers
327 views
Downloading generated excel file using ajax
I am developing an application using struts2 framework. When user provides date range, I need to prepare the reports excel file and show that in download pop-up. I am able to create io stream of ...
2
votes
2answers
167 views
Struts2: How do i get ServletRequest instance in ActionSupport
How do I get the ServletRequest instance in my action?
I implemented ServletRequestAware but I am not able to get request object in the action.
struts.xml
<package name="default" ...
0
votes
1answer
588 views
How to send form data to ActionSupport using Ajax and Struts2
when am not using Ajax then all well and good with same code. but using ajax here am got null vale for same public String execute() throws Exception { String strAction = cartItemForm.getAction(); /*i ...
0
votes
0answers
47 views
Struts execute and wait interceptor with ajax
I have used Execute and Wait interceptor for my data search. wait page is
show the data found currently. but the problem is the page is refreshed
since i used http meta tag to update the current ...
0
votes
1answer
506 views
JSP+Struts: Handle session timeout in AJAX calls
I am making ajax calls from my JS methods to invoke the action class's methods in the following manner:
$.getJSON("treeDemo_!getRootNode?appId=" + applicationId, function () {
}).success(function ...
0
votes
1answer
71 views
Hide or display according to a drop down value
I'm having a drop down and when I choose one from the field beneath, it must be disappeared. How am I supposed to do this. I'm new to struts. Please help me
<td>
<s:select
...
0
votes
0answers
105 views
Ajax called the previous Action in struts2?
Let say I have jsp pages named list_question.jsp and ajax_result.jsp
in struts.xml
<action name="question/*/*" class="ProcessAction" >
<param name="selectedCatId">{1}</param>
...
1
vote
2answers
61 views
Ajax function always return a 0 and does not proceed further
I have the script code
<script type="text/javascript" >
var xmlHttp=null;
function GetXmlHttpObject()
{
try
{
// Firefox, Opera 8.0+, Safari
...
1
vote
2answers
137 views
How to determine whether a request is Ajax or Normal
I want to handle errors differently for ajax request vs normal request.
How do we identify whether a request is ajax or not in struts2 actions?
-1
votes
2answers
546 views
uploading image and data using ajax
I am trying to upload some text and image using ajax. I am using struts2 framework
and simple java script. This uploading showing error how to resolve it.
In jsp page
<s:form ...
0
votes
0answers
53 views
how to get src at run time when streaming multimedia to support ajax functionality
I'm working on Gallery module using struts 2. To show images/Audio/Video files on browser I'm using ajax which will reduce the server load. For ajax call when the page loads i'll just get the src ...
0
votes
1answer
364 views
Struts2 AJAX validation doesn't stay on page
I've been trying for a few days now to make Struts2 AJAX validation work but I can't solve one last problem. I'm using the struts2jquery plugin to asynchronously submit my form:
...
-1
votes
3answers
117 views
Getting 400 Bad request error when sending huge amont of data with post
I am using yahoo yui ajax call to post request.
Page is developed in jsp and server is tomcat 6 and using struts 2.x.
While i am sending small amount of data using ajax call post request it is ...
-2
votes
2answers
1k views
How to send request parameters by Ajax to Struts2 action class
I have a Struts2 web application consisting of the following files:
member.jsp:
<script type="text/javascript">
String str1 = "aaa";
String str2 = "bbb";
xmlhttp.open("GET", ...
1
vote
2answers
231 views
How to use sx:autocomplter in Struts2 for AJAX purpose?
I am following this tutorial to build AJAX into Struts2:
I successfully reached the final step and I have exactly the same interface shown as the user does, also, my first dropdown box has AJAX ...
-2
votes
4answers
189 views
Unable to call action using ajax+ json
In my Ajax request I am calling action class like this:
var ajaxRequest;
ajaxRequest = new XMLHttpRequest();
ajaxRequest.open("GET", "../displayProjects.action?userMasterID=" + userMasterDTO.id );
...
4
votes
3answers
356 views
Server side - Progress Bar
I am currently working on a file conversion program, once the file has been uploaded it will convert the file to different file formats(ppt,pdf) this will usually take long depending on the file size. ...
0
votes
1answer
716 views
Making ajax call to Strut2 action without page refresh
I'm running Glassfish web server with Strut2 and I would like to pull json data from action class for a page without a page refresh. What I mean by that is that when a user changes a setting I would ...
2
votes
2answers
243 views
Prevent page reloading in struts2
I am currently working on a small web app and this is the first time i am using struts2. Here is what i am trying to achieve.
A struts2 JSP page on form post, calls a struts action. Once this action ...
0
votes
1answer
383 views
JQuery Ajax adding hash in the url
I have this code here that uses struts2-jquery plugin
<h4>Choose A task</h4>
<ul>
<s:url value="views/ajaxvalidation.jsp" var="ajaxvalidation" >
...
1
vote
1answer
451 views
Adding parameters in the url in struts2 is not being shown
I am adding a parameter in the url of the page of I was trying to go but in the generated url it is not being shown, why is that?
Here's my jsp.
<%@ taglib prefix="s" uri="/struts-tags"%>
...
2
votes
2answers
191 views
How do I change the address bar when I make an Ajax request?
I have created a website that intensively use Ajax to load its contents.
I want the pages I select to load on AJAX but at the same time the URL also changes without reloading the whole page content. ...
0
votes
1answer
247 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 ...
1
vote
2answers
446 views
How does struts2 run its validate method?
I am doing an XML form validation and form validation with validate() method. The XML validation is to check if they filled out the required fields, are the fields in proper length and etc. while the ...
0
votes
0answers
240 views
Struts2 Dojo Ajax validation is not being validated
Here is my jsp page.
<!DOCTYPE HTML>
<%@taglib prefix="s" uri="/struts-tags"%>
<%@taglib uri="/struts-dojo-tags" prefix="sx"%>
<html>
<head>
<sx:head />
...
0
votes
1answer
200 views
Struts2 Loading pages asynchronously
I saw this video regarding loading pages asychronously through ajax. everything seems simple but what if I want to load a certain page. but before that page load it will do or go to a Certain Action ...
0
votes
1answer
122 views
loading div on page load
I want to load an action on page load.
I am using struts2 and jquery.
I want to fetch all the comments of commentOn element.
For page load i am sending commentOn value to fetchallcomments action
...
0
votes
0answers
244 views
jquery,ajax,spring,hibernate,struts2 does not call the servlet
I'm developing a web page for checking the user availability using struts2, jquery, ajax. It is working fine. After I integrated the same page using spring, hibernate, struts2, it stopped working. ...
0
votes
0answers
714 views
show action result in same page in struts2
I am trying to show result in same page but it is showing result in separate page. The action is adding attribute to the session, I want to show the value of that attribute as a result.
<%@ page ...
0
votes
4answers
406 views
getJson fails to call Struts2 action
HTML file
<html>
<head>
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript">
var $ = jQuery;
$(function(){
...
0
votes
1answer
380 views
Struts2 AJAX :Get struts 2 action message as ajax response
I am trying to get actionMessage from action by using Ajax call. I am able to get the resultList through AJAX call but not sure how to get action message.
Please give me some Idea .
2
votes
1answer
288 views
struts2 ajax with checkbox
i am not able to bring my ajax called checkbox in correct position using div with id(<div id="reverse" style="position:absolute; left:500px; top:379px;"></div>)how can i bring them with ...



