Tagged Questions
2
votes
1answer
22 views
Controller always receive null from json only a specify field
Hy folks!
First: I've found these posts before start my question here: questions/11344035 - questions/15939944 - questions/9412449 - questions/9162359 - questions/1551263.
Second: none of then ...
0
votes
0answers
33 views
ASP.NET MVC action is not being called on huge JSON
I use asp.net mvc 2.0 and jquery for my web application. when I tried to call a MVC action by Jquery Ajax with a JSON object about 30K, my server action did not get called. I searched for a solution ...
3
votes
3answers
31 views
Accessing details of ajax response JSON
I have a really stupid beginner jquery question, even if I saw a lot of similar question here:
From PHP with ajax I send this:
public function to_json() {
return json_encode(array( 'test_id' ...
1
vote
1answer
31 views
Problems with Jquery .get() jqXHR shows a valid return, but calls .fail()
The Code:
function readfile(company)
{
var url = "JSON/" + company + ".json"
$.get(url,function(data){
parse(data)
})
.fail(function(jqXHR, textStatus, ...
0
votes
1answer
22 views
Reading return data from php json_encode
I'm trying to read the data sent back to my ajax request from the server. I echo back an array then I want to read each value and place it on the desired place on the page. I'm not sure how to work ...
0
votes
1answer
10 views
slash are removed from jquery ajax post data
$.ajax({
type: "POST",
url: "DataImport.aspx/InsertInitialFile",
contentType: "application/json; charset=utf-8",
processData: false,
...
0
votes
1answer
19 views
Referring to parent loop from a nested loop
Here's what I'm trying to achieve: I have 2 tables in my db - 'regions' and 'distributors', both have a region_id column. What I want, is to:
1) iterate through the 'regions' table, for each region ...
1
vote
2answers
19 views
Unable to use dynamic JSON
am using ajax request for calling jersey restful url.
function deRegisterPersonOrganization() {
var dynamicJson = $('#jsonRequest').val();
alert("Text Area JSON : " +dynamicJson);
var ...
0
votes
0answers
28 views
JSON string requested using AJAX from WCF service missing .d and __type attributes
I am using jQuery AJAX to call a WCF service. The service retuns a JSON string that represents an instance of a custom object.
What I'm writing is meant to replace some current functionality in an ...
0
votes
1answer
28 views
Parsing json Array Ajax Return Data
Can somebody explain me how do i parse this Ajax response in jQuery
{"d":{"__type":"ListUsers+returnData","Type":"Success","Message":"User Added successfully."}}
I am using same return types for ...
1
vote
2answers
49 views
MVC 3 sending class JSON
My parameter KontrolkaSamTekstLista get null data to controller ActionResult KontrolkaSubmit() but all send action to ajax looks okay.
Class
using System.Collections.Generic;
namespace ...
0
votes
0answers
29 views
Assign array of strings from JSON to Handsontables object in javascript?
I am trying to assign array of string to handsontables column as auto-complete. I am getting this JSON data from AJAX calls.
I am not getting to assign to source:. Please follow the code.
var ...
-3
votes
2answers
46 views
Fetching data into drop down from php through ajax
Okay i have to drop down boxes, now when the the selects an item in dropdown box A, it should use that selected value as a parameter within the php and use the result of the query to populate dropdown ...
0
votes
4answers
54 views
Cannot access JSON response attribute
I have a JSON response in JavaScript that looks like this:
{"opt1":"2.92","opt2":"4.24","opt3":"6.36"};
This is the result of applying console.log(data) where data is the response:
success: ...
0
votes
1answer
31 views
jQuery JSONP request causing TFL API to throw 400
I'm using jQuery .getJSON to get data from TFL's (transport for london) API.
However adding the ?callback=? parameter to the request causes the API to throw a 400 (Bad Request) error because it is ...
0
votes
1answer
23 views
How do I pass AJAX JSONP data into a function?
I asked a similar question already, but I discovered that I needed to use AJAX and JSONP, which opened up a whole new world of hurt.
A company that I am working with has an API for their Privacy ...
0
votes
1answer
35 views
How to POST some properties using an AJAX array?
I want to POST my array data through AJAX posting method.
For getting those values in an array, I have used a ViewModel.
My controller code is as::
[HttpPost]
public ActionResult ...
0
votes
2answers
46 views
consuming json wcf service from view in mvc
I am trying to store all information of my "user" table in wcf. and return it in json format.When i am invoking the service,i can see the entities.
But my question is how to call this service ...
0
votes
1answer
46 views
jqgrid duplicate rows in spite of having uique id
Issue:
I am sending 10 rows from server(lets assume jqgrid requests 10 rows each time).
1st fetch : 10 rows sent/displayed (id:1 to 10) View 1 - 10 of 25 in grid
2nd fetch : 10 rows sent/displayed ...
0
votes
3answers
54 views
Error parsing JSON using jQuery 1.9 but no error in eval
I am overriding java.Object.toString() to get JSON without using any JSON library on the server side of my app.
jQuery version 1.9.0 and
JDK version 1.6.21
As a response to:
var jqxhr = ...
-1
votes
2answers
52 views
Data not getting saved using JQuery.ajax
I want to save data from Textbox on Button click. I am using JQuery AJAX for this task like below. Please note that I made this tags inside theme function.
function theme_user_post_block($vars)
{
...
0
votes
1answer
46 views
Internal Server Error when retrieving JSON from a python script using JQuery
I'm trying to write a simple web application that uses JQuery to call a python script. The python script returns data in JSON format. Here is the ajax call in my Javascript:
console.log('before');
...
0
votes
0answers
43 views
ajax returns JSON, and I also want to fire a js call
find.js
$(document).ready(function() {
$("#find_user #email").select2({
width: '400px',
placeholder: "Find user...",
minimumInputLength: 1,
multiple: false,
ajax: { // instead ...
0
votes
2answers
68 views
select2 AJAX'd to a model, configuration
So, I just discovered select2. Awesome. Now I'm trying to figure out how to use it, server side with ajax / json. All of the examples I see, everywhere, show using select2 with JSONP to retrieve ...
0
votes
0answers
38 views
Data Retrieving is very slow
We are developing a Hybrid App and here data is fetched from the server. The data is in JSON format, but it takes more than 15 seconds to load the data from server.
Here is the sample code :
...
0
votes
0answers
33 views
AJAX Post Data Formation
I'm trying to send data to a php file on my server. This is the inside of a function called send(message). I've already used this method to successfully send and receive other data. When I try to use ...
2
votes
0answers
47 views
json not responding from the model the way I'd like to think - autocomplete select2 with rails
So, I just discovered select2. Awesome. Now I'm trying to figure out how to use it, server side with ajax / json. I'll get right to the nitty gritty. json returns a value, but the searchbox ...
0
votes
1answer
32 views
Chrome extension transfer to manifest 2 - No ajax response
Hayush!
Been trying to transfer my Chrome extension to manifest 2. Everything is working except for one script which calls an ajax. I have a variable that contains a JSON content which needs to be ...
0
votes
3answers
89 views
json Array posting to mvc controller
I want to post JSON array to MVC controller through AJAX POST as:
$.ajax({
type: 'POST',
data: json.stringify(totaldata),
...
0
votes
0answers
44 views
AJAX query JSON fails in Internet Explorer 9
There are tons of discussions with this subject without any clear issue, only unexplained turnarounds. Basically, my "microsoft" code section below doesn't send ANY header to the server; I've printed ...
0
votes
3answers
72 views
How does Javascript differentiate between Json Objects and String?
I was reading a code snippet and figuring out how it works when this weird javascript problem came up.
In their javascript they called
var apiUrl = ...
0
votes
2answers
81 views
Javascript: How to test if response JSON array is empty
I'm getting back the following JSON:
{"array":[],"object":null,"bool":false}
And I'm testing it with the following, seemingly exhaustive, if statement:
$.ajax({
type: "GET",
url: ...
0
votes
1answer
60 views
Where can I convert JSON date format when data from WCF ajax call?
I am getting JSON data from WCF service like below format. Then I am binding that data to handsOnTables.
JSON
{"d":[
{ "__type":"InitData:#company.ReductionData",
"Owner":"test9",
...
...
0
votes
1answer
61 views
jQuery Mobile and ajax on load
Well I´ve been breaking my head with this problem for some time, I´ve tried tons of solutions online yet none of them work.
What I need is to feed data from a json to a listview on page load and ...
0
votes
3answers
69 views
JSON object returned but not accessible via $.ajax()
I have an ASP.NET MVC Web API that I am calling from an $.ajax() method. The correct JSON is returned from my API, but the object is not accessible. The error received in my console when trying to log ...
0
votes
1answer
33 views
how to pass data from View to as an object Controller using ajax?
I have a search ajax request like this:
$.ajax({
type: 'POST',
data: { FirstName: firstname, LastName: lastname},
contentType: "application/json; charset=utf-8",
...
5
votes
3answers
143 views
jQuery and JSON vs IE - SCRIPT5007: Unable to get value of the property
I'm struggling to get this script working. It's basically a simple ajax call to retrieve data from a php which returns a JSON code.
function refreshWindows(){
if(AjaxPull && ...
0
votes
0answers
21 views
Html append Issue using getJSON
/* this is my html in which iam creating dynamically category buttons and passing categoryid and name to function
i have to show product menus on behalf on Category in div "dvsoft".
<div ...
0
votes
1answer
60 views
Decode html string in JQuery Mobile template
I am using jquery templates which I populate using an ajax request. However, one of the values returned is encoded HTML. How can I encode it?
I have tried using ${$.mobile.html(Body).text()} but that ...
0
votes
1answer
64 views
Want to Save Posted Json data to database
I am posting JSON data through AJAX POST as ::
var length = $('.organizer-media').length;
var contents = $('.organizer-media');
var Title;
type == ...
0
votes
2answers
92 views
How to save Handsontable to database
Is there a generally accepted pattern for saving the data in a handsontable back to a database?
I'm using ajax and a WCF service to pull the data from my database to populate the table. The service ...
2
votes
0answers
97 views
AJAX and CSRF in Spring
I'm sending a CSRF token in an HTTP request header and in a POST hidden field to guard against CSRF attacks something like the following.
var request;
var timeout;
function insert(callback)
{
...
3
votes
2answers
136 views
A circular reference was detected while serializing an object of type 'System.Reflection
I have an asp.net MVC 3 controller action method like this:
public JsonResult GetRecordingRates(int Id)
{
List<DefaultRateChart> defaultRateCharts = new ...
0
votes
0answers
63 views
jQuery Passing Parameters as POST Body, JSON Encoded
I'm currently working with Bitinstant's API and I can't figure out how to structure my ajax calls. Currently I'm doing this:
$.ajax({
contentType: 'application/json',
data: JSON.stringify({
...
0
votes
1answer
35 views
Highchart data parsed after ajax answer
I received from a jquery ajax function a response like :
["{y:55,color:'red'}", "{y:21}", "{y:12}", "{y:6}", "{y:3}", "{y:3}"]
In my PHP code, I encode via json_encode in an array :
foreach($pp as ...
0
votes
1answer
68 views
Ajax call fires error event but returns 200 ok
$.ajax({
url: 'http://intern-dev01:50231/api/language',
type: 'GET',
dataType: 'json',
success: function() {
console.log('It Works!');
},
...
0
votes
3answers
41 views
creating an array and sending to ajax
I'm trying to gather information from all of the textareas on my page, and then put that information into an array so I can send to the server via ajax/json.
Although I am not quite sure how to go ...
0
votes
1answer
41 views
MVC Controller not parsing Ajax Reqest Correctly?
I have an MVC .NET 4.5 application using an Ajax request with JSON to hit the MVC controller on server side. The function in the controller looks like this:
[HttpPost]
public void SomeFunction(int ...
0
votes
1answer
127 views
Google Maps from JSON File
I'm trying to create a heatmap map with 2 layers using google maps API and heatmaps.js. I'm able to create my map by hard-coding my lat/lon variables, but ultimately I'd like to have my layers fed ...
0
votes
0answers
53 views
Google Apps Script ContentService JSNOP not completely working
I've tested the Simple JSONP sample by Arun Nagarajan in this GDL video: http://www.youtube.com/watch?v=JRGzVdliQOQ&list=PL68F511F6E3C122EB&index=18
I got it working exactly as he ...

