Tagged Questions
0
votes
1answer
30 views
How do I do a JQuery, Ajex call to a Spring Web Flow Event?
How can I do a JQuery Ajax call to a Spring Web Flow Event changing the eventId to 'loadSchools'?
Here is my jquery code:
<script type="text/javascript">
$(document).ready(function () {
...
0
votes
0answers
16 views
Ajax post using JQuery in Spring webflow project
I am working on a spring webflow project what was using Spring.AjexEventDecoration but the firm is requesting for it all to be remove and to use JQuery for the java-script part.
I had the following ...
0
votes
0answers
20 views
The dots on jsTree are not being displayed
I am currently using jsTree to display the hierarchical structure of a company. Everything works except the dots are not displaying. I have tried my code in both IE8 and Google Chrome so I doubt it is ...
0
votes
1answer
27 views
jquery removeAttr is not working
I have two jsp files
index.jsp file which contains this code which basicaly ajax call and get th html format data.
$.get("getDOData", { doNumber: obj.val()},
function(data){
...
1
vote
0answers
30 views
jquery spring mvc html in javascript code
I have two tabs like the one shown below.
User selects the checkbox which he want to edit and the next tab shows the field for editing the field.
My first tab is loaded using jquery load function. ...
0
votes
2answers
95 views
jquery load array parameter to spring mvc controller
I am trying to pass long array from jquery load to spring controller. I have passed string variable succefully but not the array.
javascript:
function ModuleMemberCheckboxPassIds(){
var ...
1
vote
1answer
77 views
Sending Map<String,List<String>> as request parameter through ajax
i want to send a Map through ajax request but i am getting 400 bad request.
My data is like.
var idss1 = [];
var idss2 = [];
var idss3 = [];
var idss4 = [];
var idss5 = [];
map[id_1] = idss1;
...
2
votes
1answer
38 views
Loading contents from parent window to child window
I am working on spring web application, i have one of the jsp page which contains a table and below that table i have iframe. Now my problem is, i want to set tr content which is inside iframe from my ...
0
votes
1answer
90 views
Submit a handsontable to a spring mvc3 controller - Content type 'application/x-www-form-urlencoded' not supported
im new to spring mvc3 and am looking at a jquery handsontable example.
here is my part of my jsp page that includes the form
<form:form ...
1
vote
2answers
59 views
jQuery datepicker works but Spring controller gets null date
I know this should be quite simple but I don't see where is the problem.
I have these two jquery datepickers:
<script>
$(function() {
$( "#iniDate" ).datepicker({ ...
0
votes
1answer
27 views
How can i populate some textfield on selection of an option from the form:select having items as object list?
I have a DTO with attributes id,name and text. I am generating a list of these DTO's and sending them into my JSP through model.addAttribute. In my jsp i am rendering a spring list like this.
...
0
votes
0answers
19 views
IE makes CrossDomain requests on the same domain
I have a problem: on the one domain - IE makes crossdomain requests instead of normal requests.
Request is very simple: using jQuery -> $.load() function.
FireFox does such request:
GET ...
-1
votes
0answers
66 views
jQuery form submits but doesn't call Spring Controller without page refresh
I have a page that submits when I click on the back button of a browser
I am using babj to capture the back button click and submit the form.
The code for submitting the form is as follows and is ...
0
votes
1answer
43 views
service calls hang on the second page refresh
I've got a spring web application where I load the UI data using web services. The DB I use is H2 and I've posted a sample service where I use it fill a select element. Below is the spring service.
...
0
votes
1answer
86 views
Getting error with JSon request; POST 406 (Not Acceptable)
Keep getting the mistake above, even though I've searched this site and tried everything. Would really appreciate some help. The problem is with the Jquery/JSON request on the AddUser page. I have ...
2
votes
1answer
77 views
How to populate entity object values on Spring Form using jquery/ajax?
I have the Spring form
<form:form method="POST" action="/HelloWeb/addStudent" id="myForm">
<table>
<tr>
<td><form:label ...
0
votes
1answer
37 views
how to submit form using jquery in spring and retrive data in form in controller method
I want to submit the form using jquery and at the same time whole form data should be send to controller and how to retrive that formdata in controller
suppose this is form
<form action="#" ...
0
votes
2answers
71 views
Is it possible to dynamically reload a form:select with values depending of the value of another form:select
I've a pair of state/city drop down selects in a form. The city drop down should be dynamically changed depending of the state selected by the user. I'm using jQuery with Spring MVC.
My object of ...
0
votes
1answer
113 views
datepicker jquery returns incorrect date spring mvc
I am running in weird issue from morning.
I am using jquery datepicker to get date field on my jsp page.
my application is based on spring mvc.
after user selects date on jsp page and submitting ...
0
votes
2answers
60 views
How to clear the spring form fields using jQuery?
When I click the 'CLEAR' button, I want the javascipt code to run. It does run but then the form gets submitted. Is there a way to stop the form from getting submitted? Or is there a spring standard ...
5
votes
4answers
247 views
Spring: Ajax call to @ResponseBody param encoding fails in IE
I'm working with Spring and try to make a ajax call to @ResponseBody in my controller.
UPDATE
Okay, I added the changes I got told to to my ajax settings.
My param "jtSearchParam" still has the same ...
1
vote
1answer
238 views
jQuery - JSON to populate dropdown list
I'm trying to populate a dropdown list from a jQuery call that requires JSON. I found on the web the following code which is my starting point (Java and Spring 3), but I accept other/better ...
0
votes
1answer
121 views
Making jQuery call to Spring Controller with additional param
On change in a text field the jQuery makes a call to Spring Controller. My question is how does this query sends the @RequestParam to the Controller method controller/find?
How would I be able to ...
0
votes
1answer
56 views
Dynamically fetching matching data for each table row using AJAX
The rows below are generated dynamically
<input id="soid0" name="soid[0].name" type="text" />
<input id="soid1" name="soid[1].name" type="text" />
<input id="soid2" name="soid[2].name" ...
0
votes
0answers
54 views
Setting value For TextBox for Selected Href In Row
I have a loop that generates several rows of records. Each row has a href tag and an input box i would like to set the value of 'path' only for the each input item in that row to he same value. Under ...
0
votes
2answers
70 views
error Status: 'Bad Request'. Error code: 400
On ItemController :
@RequestMapping(value="/delete.htm", produces="application/json", method=RequestMethod.POST)
public @ResponseBody Item deleteItem(
@RequestParam String itemName) {
...
0
votes
1answer
356 views
Header Access-Control-Allow-Origin:* not working properly on Spring MVC
I have a web application running on Spring MVC using RESTful web services. I'm trying to send a JSON to those web services from an HTML/Javascript file. Here's the Javascript:
$.ajax
(
{
type: ...
0
votes
0answers
59 views
Session is lost and User logs out when JSON format error occurs in UI
We have a web-application deployed on Cluster environment (Weblogic 10.3.6 server) and we are replicating the session on all the nodes.
We have a search Textbox where we could search for items. ...
2
votes
1answer
238 views
jQuery-JTable: add on click event for row?
I have to following code to show my user table, this is achieved by JTable.
<script type="text/javascript">
$(document).ready(function() {
...
1
vote
1answer
254 views
SpringMVC Custom Collection Editor Not Returning Data To Jsp
I am binding a multi select list in spring the item does not get its data from the DAO the data is added from another select option list. The user clicks a button and the data is sent to the multi ...
0
votes
1answer
117 views
Not able to render the request to another html from controller using angularjs + spring MVC 3.0
Logon.jsp
<!DOCTYPE html>
<html ng-app="angularspring">
<head>
</head>
<body ng-controller="LogonController">
<form>
...
-2
votes
1answer
139 views
Viewing Spring security login page as a popup [closed]
I am using spring security and spring MVC. When an unauthenticated user tries to access a protected url,spring security directs the user to a custom login page.
Instead of redirecting to a new page I ...
0
votes
1answer
111 views
<script> tag doesn't close properly
In my default.jspx which contains the basic layout for the page I am trying to import some jquery libraries as follows
<head>
...
<spring:url ...
1
vote
1answer
87 views
how to do jquery form submit using Ajax?
In my java application I'm submitting the form using JQuery.
Here is the code in my jsp:
<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form"%>
<%@ taglib prefix="c" ...
0
votes
2answers
345 views
SpringMVC Returning a List Of Objects With JSON
I have two select options and i would like when the user selects one option that other is populated with data from the database. However i am having issues in getting the object list returned to the ...
1
vote
1answer
249 views
406 Not Acceptable: Spring 3.2 + JSON + AJAX
Searched tons of sites and even stackoverflow but have not found a solution to this problem. Looks like lot of people have encountered this problem but its seems a unified solution is missing that ...
0
votes
1answer
129 views
Add javascript object to spring form by clicking a list element
I got a list of products created from an ajax call. This list shows the names and product numbers of the products.
Now I want to add products to a form by clicking on a list element in the list of ...
0
votes
2answers
726 views
Converting JSON array into java List<String> with Spring MVC
I have a list of string in my javascript code which I send via JQuery to a REST based service as follows:
var ids = [];
$("input:checked").each(function() {
ids.push(this.id);
});
var ...
0
votes
0answers
105 views
Spring send list of object to jquery on json format, and how take this object from jquery?
I use a spring mvc application.
I made a class Test.java and use:
return new ResponseEntity <List<Test>> (list, responseHeaders, HttpStatus.OK);
to return a list of these objects Test, ...
0
votes
1answer
1k views
Origin url is not allowed by Access-Control-Allow-Origin
I know there are many questions already regarding this error. But, I'm still not able to get this working even after setting the header
"Access-Control-Allow-Origin" : "*"
...
0
votes
2answers
68 views
Spring MVC and Ajax Validation
I have the following ajax. Whenever the specified input element changes, the function will try to recalculate the total.
$('[name^=quantities]').change(function() {
calculate();
});
function ...
1
vote
1answer
480 views
Not able to use ajax in spring mvc form
I am trying to implement ajax based post in form in spring mvc.
Here is my code:
<form:form method="POST" commandName="emailDomain">
<form:textarea path="emailText" rows="5" ...
0
votes
1answer
205 views
how to get html table row data into a dialog box to edit
i have a users.jsp page which contains the html table so when i click on edit button a pop window should be opened with data so the form is in another file editDialog.jsp which i want to submit... so ...
0
votes
1answer
130 views
IE9 issue - Required MultipartFile[] parameter is not present with Jquery-uploadify
I have angular Spring MVC application, where i am using jquery-uploadify plugin to upload files. Below is the code
The different js files i have included
<!-- files for image uploader extension ...
0
votes
1answer
119 views
Passing a Custom jQuery class to Spring Controller
I have created a object and added to an Array in Jquery as below
function CharacterData(name,value,type) {
this.name = name;
this.value = value;
this.type = type;
}
var characters = new ...
0
votes
1answer
81 views
SpringMVC Resources Path Changes When using Href Tag
I have a Spring MVC application it uses jquery.webcam.js this file is located in a js folder in the resources directory on WAR -resources -js,css.. - WEB-INF. Thats the basic structure in the js ...
0
votes
1answer
110 views
hide and show a table column
I need to hide the last column which is checkboxes based on the model Object passed from spring controller. If the model value is "isAll" column should be hidden if any other value it should be ...
0
votes
1answer
177 views
Place to put a Jquery UI dialog, in a spring mvc project (with JSP)
I have a Spring mvc project in eclipse. In most cases, for the web pages, i have a composition of various jsp, from a main layout jsp to others jsp files.
I try to put a dialog of jquery UI, but i ...
0
votes
1answer
102 views
jquery uploadify ie9 issue multipart not sent to server
I am using jquery uploadify to upload images in my angular,Spring MVC based application.
Image upload works perfect in all browsers except IE9.
In case of IE 9 i get following error at server
...
-1
votes
1answer
74 views
Where is the “Hello World” coming from in Spring MVC Samples
I am trying to review the code in Spring Show Case from git
https://github.com/SpringSource/spring-mvc-showcase
But I am missing something on the first page if you click on the simple link you get ...



