0
votes
0answers
39 views

How to create send a Java object to browser?

When developing web apps, I usually try to generalize data that is transferred between client and server. I think this is a DTO (Data Transfer Object) pattern. So, I always end with an object on the ...
0
votes
1answer
36 views

value is not passed to controller

i have a problem with passing values to the controller(jave) from javascript file after serialising the entries. when i run in debug mode its passing values to the controller but if its run straight ...
1
vote
1answer
117 views

C# MVC4 - pass List of custom class back to Javascript

In my controller, I have the following method.. pretty straight forward. namespace Playground.Controllers { public class TasksController : Controller { // an ajax call to this ...
0
votes
1answer
32 views

Dynatree ASP.NET MVC: post tree to server

I want to post data from dynatree to my asp.net mvc server via ajax. I use the model classes (Dynatree with ASP.NET MVC) from Steve which work well for getting data from the server to the client. But ...
0
votes
1answer
23 views

get a value from a serialized string

There is a form, and on submit, I convert it to a serialized string to in order to submit the form via ajax. var data = $$.serialize(); Now there is an input field named 'title' and I want to get ...
1
vote
2answers
23 views

Is there a way of specifying what data of an object is passed to the serializer when it's being serialized?

I'm serializing quite complex data-structures using native JSON.stringify of chrome(will switch to some serialization library later for cross-browser support). Most of the data can be looked upon as ...
1
vote
1answer
60 views

What is JSON.NET for? MVC already has a way to convert objects to json

I looked at the JSON.NET site but I am not getting it... I already have code like this .. string[] invalidFiles = new string[] { "one.xls", "two.xls", "three.xls" }; return Json(new ...
0
votes
1answer
133 views

Serialize HTML Form in JavaScript and then Convert to a .NET Type in C#

I'm trying to take a HTML form and serialize the fields so that it can be stored as attributes against an element in JavaScript (you can use jQuery). This can later be parsed in C# and converted to a ...
0
votes
0answers
30 views

JavaScriptSerializer JArray deserilization

I am currently converting a JArray to string and using var foo = serializer.Deserialize<Dictionary<string, Dictionary<string, string>>>(Sign.ToString()); Will it still work if I ...
1
vote
1answer
85 views

reuse serialized reference to “this”-Keyword

First things first: I'm not sure whether the information that I'm going to provide will be enough, I will happily add additional information if needed. I'm serializing a complex structure into the ...
2
votes
3answers
186 views

jQuery serialize() exclude all elements within div.classname

I'm trying to exclude invisible form values from serialize() jQuery output. Invisible inputs/selects are inside div.ui-tabs-hide div's. Not the children of it, but descendants. So basically, I need to ...
0
votes
1answer
115 views

Typescript objects serialization?

Are there any means for JSON serialization/deserialization of Typescript objects so that they don't loose type information? Simple JSON.parse(JSON.stringify) has too many caveats. Or I should use ...
0
votes
1answer
77 views

How to delete an item from a serialized list?

I make a serialized list (with JQuery) and then want to delete a Parameter/Value pair from the list. What's the best way to do this? My code seems kinda clunky to take care of edge conditions that ...
1
vote
2answers
74 views

JQuery serialize with complicated selector

I have form to serialize which is containing table: <form id="myForm" method="post"> <table> <tr class="hide"> <td><input /></td> ...
1
vote
3answers
149 views

Javascript integer to datetime with specific timezone

I have the following datetime saved in an SQL Server 2005 database: 2012-12-06 16:20:11.010. I want to display this datetime using javascript on the client side, so I serialize it (as part of a ...
0
votes
0answers
28 views

How can I send part of code asynch?

In my response, I have a function that load a model-data of point (Google point) and serialize it, sending to the client when finish. The code looks like: IList<PuntoMappa> punti = new ...
4
votes
1answer
388 views

Is there a more effective way to serialize a form with angularjs?

Is there a way to serialize function for angularjs? my post looks like this right now. $scope.signup_submit = function () { var formData = { username: $scope.username, full_name: ...
0
votes
2answers
43 views

using THIS with jquery sortable serialize

I have this code $('.contentlist_tosort').sortable({ update: function(event, ui) { $.post("ajax.php", { pages: $('.contentlist_tosort').sortable('serialize') } ); } }); But I want ...
3
votes
1answer
95 views

Why does JSON.stringify not serialize non-enumerable properties?

I'm serializing objects to JSON strings with JavaScript, I noticed only enumerable object properties get serialized: var a = Object.create(null,{ x: { writable:true, configurable:true, value: ...
1
vote
1answer
47 views

Unable to serialize JavaScript object properly

var o = { param1: "value1", param2: "value2" } console.log(o); console.log(escape(o)); The first console.log shows Object { param1: "value1", param2: "value2" }, the second: %5Bobject%20Object%5D ...
1
vote
2answers
235 views

Recursive function to serialize a javascript object for an ajax request - is there an easier way?

Here is a function and helper that I wrote to serialize a javascript object for sending in an ajax request. Chances are there is a more efficient solution out there somewhere, probably in the jQuery ...
0
votes
0answers
53 views

Serialized Fields return null

I have a Java EE web application and in that I'm trying to do the delete function! For this I'm selecting a row from a Java script grid and auto filling them to necessary fields! ( two drop down ...
0
votes
1answer
70 views

Form to JS Object: change default serializeArray() data structure to make Geospatial-compatible object

I am using the following to convert a form to JS object and then insert it in a MongoDB collection... form={}; $.each($('#myform').serializeArray(), function() { form[this.name] = this.value; ...
0
votes
0answers
95 views

Javascript custom binary serialization and tcp transfer

I have Custom simple binary messaging protocol where message looks like this [message size][message id][message body] Binary serialization using .NET's System.BitConverter Custom tcp socket ...
4
votes
2answers
644 views

How to serialize byte[] as simple JSON Array and not as base64 in JSON.net?

I use JSON.net to serialize some objects between C# and JavaScript. The JSON data is transfered via WebSocket between the .NET and browser application. In the data structure there are some byte[] ...
15
votes
4answers
348 views

Python-like pickling of full Javascript objects

Is there any serialization framework for Javascript which would retain class and reference information like Python pickles? I.e. one could directly take a prototypial inherited class instance (not ...
0
votes
1answer
102 views

Decode a PHP serialized value in Javascript/Jquery

Just a quick question. Is there a built in function to decode a PHP serialized value in Javascript or jQuery? A have a PHP serialized array stored in a database and this is sent via AJAX to the page. ...
1
vote
1answer
71 views

JSON.parse or alternative library that will also parse dates

I'm using Json.NET to serialize some data. It is very flexible with how dates are serialized so I can output it to any format necessary. Is there a date format that the browser provided JSON.parse ...
0
votes
1answer
89 views

Serialise non string values to JSON

I have a javascript object that includes a number of integer properties as well as Date values and an integer array. Whenever I call JSON.stringify(entityModel, null, 2) on the object and pass the ...
0
votes
0answers
35 views

Serializing form with file input to check if form changed

On one of my page i have form, which serializes itself on document ready and on click on certain links(edit profile, and warnings if user leave page without saving it). However i have file input to ...
0
votes
0answers
150 views

Table row not serializing with jQuery sortable

I have a table with jQuery sortable working fine. There is a PHP script that should receive an updated sort order for but some reason the variable 'serial' is empty. I've tried everything but for ...
0
votes
1answer
180 views

Deserialize Jackson object with Javascript/jQuery

I recently have used Jackson combined with Spring MVC for serializing domain objects. In order to reduce ciclyc references I have used @JsonIdentityInfo like this: ...
0
votes
1answer
80 views

How to format JSON: Array of objects, or document containing elements with objects?

So I'm currently trying to develop a JSON document which will be easiest to iterate through and access objects from. I will be using underscore, so accessing objects isn't necessarily difficult, but ...
1
vote
2answers
1k views

Serialize form inputs to JSON using Backbone.js

I'm working on RESTful application - I'm using Java on the server side and Backbone for the Front End. The 2 will communicate via JSON. My App has quite a few forms and I would like to: Serialize ...
1
vote
3answers
236 views

Javascript JSON Date Deserialization

I am trying to deserialize a json object that has a javascript date in it. When JSON.stringify is called on the object, dates are serialized to strings that are not properly deserialized back to ...
0
votes
2answers
62 views

Is there any library / jQuery plugin to create form from object

I would like to send some POST data (which I have in Javascript object) using Javascript and then show the result page. My first thought was to use AJAX jQuery $.post() method, because I could ...
3
votes
2answers
67 views

Stringify timestamp object

How can i JSON.stringify the following data-structure? var Records = { 1357775376232: { pageX: 0, pageY: 0, scrollLeft: 0, scrollTop: 0, target: #document, ...
2
votes
1answer
120 views

shorten querystring for searching and many filters

i am building a search function which use many filters. i decide to use the get method instead of post (different reasons). Problem is, when using many filters the querystring gets very long, ...
0
votes
1answer
17 views

Sending _method paramater through ajax

I have an ajax form that I need to serialize. I also need to set the _method of the data form manually. Here is my current implementation. $.ajax({ url: http://someposturl.com/object, ...
0
votes
1answer
523 views

Issue with JSON.stringify adding a extra \ and “” to my Json object

Hi I am creating using Javascript an array of object with a key and a value using the following code. ValuesArray.push({ key: $(this).attr('someattribute'), value: $(this).val() }); As a result I ...
0
votes
1answer
185 views

Javascript access JavascriptSerializer JSON string Correctly

In Javascript I'm calling a function that retrieves data from a data table and converts it to javascriptSerializer, I then use the data in a Javascript chart. Everything works fine the first time ...
0
votes
2answers
119 views

Sending a serialized data from js to server side in a variable

I am trying to send a serialized data through query string/variable in a url. As you know when we do a serialize in js it builds a query string itself. I am sending this data to server side which is ...
0
votes
1answer
95 views

Change object on client side or on server side

I'm not sure what is the best practice. I have some big and complex objects (NOT flat). In that object I have many related objects - for example Invoice is the main class and one of it's properties is ...
0
votes
1answer
36 views

Is there a way to keep object members from serializing .NET nulls as “null” in my JSON object?

I am using WebMethods to return an array of a custom class. When returning the array from a Jquery .ajax call, it is serialized into a JSON object for use with Javascript in my ASP.NET app. What I ...
0
votes
1answer
125 views

Map java-object with all subclasses to json string

I know how to serialize java objects. but what if I have an objects and inside another object that is null? e.g. My 1st class: public class Invoice { private Adresse adresse; private Double ...
2
votes
1answer
166 views

Access JavaScriptSerializer in Javascript

I have a json array which I serialize, how do I access it in the javascript. I am using javascriptamchartsand want to passvb.net` array to the javascript charts. The code is provided below: VB ...
0
votes
1answer
382 views

Spring MVC - Deserialize JSON array

I'm trying to pass data to my controller using Ajax and JSON. I've got an HTML table and I've got to send multiple coordinates of that table to my controller. So I made a Javascript array containing ...
1
vote
4answers
354 views

Use jQuery to serialize DIV attributes and send to AJAX POST

I know serialize works with <FORM> but can it work for DIVs as well? <div class="row" shortname="1"></div> <div class="row" shortname="2"></div> <div class="row" ...
1
vote
3answers
578 views

jQuery Serialize form into JSON object but ignore placeholder

Ok A while back I found this wonderful little addon style script for jQuery that will take all fields in a form and serialize them into a JSON object. Unfortunately however. I am finding that this ...
0
votes
2answers
319 views

Javascript syntax error in razor page

I found in this link a solution to transfer some data from my model to a javascript object. The problem is that I have an error in visual studio indicating that the semi-colon is invalid but when I ...

1 2 3 4 5 6