Tagged Questions

9
votes
12answers
23k views

Using jQuery to grab the content from CKEditor's iframe

Hey guys, I have this custom written CMS that uses CKEditor *(FCKEditor v3) for editing content. Along with that I'm using the jQuery Validation plugin to check all fields for error prior to ...
7
votes
4answers
190 views

How do I make my JSON less verbose?

I'm currently developing a web application and using JSON for ajax requests and responses. I have an area where I return a very large dataset to the client in the form of an array of over 10000 ...
7
votes
5answers
20k views

jQuery: What to do with the list that sortable('serialize') returns?

With jQuery I'm retrieving positions of a sortable list using 'serialize', like this: var order = $('ul').sortable('serialize'); The variable 'order' then receives the following: ...
4
votes
1answer
2k views

how do to file upload using jquery serialization

So I have a form and I'm submitting the form through ajax using jquery serialization function serialized = $(Forms).serialize(); $.ajax({ type : "POST", ...
4
votes
3answers
8k views

In XStream is there a better way to marshall/unmarshall List<Object>'s in JSON and Java

I'm using XStream and JETTISON's Stax JSON serializer to send/receive messages to/from JSON javascripts clients and Java web applications. I want to be able to create a list of objects to send to the ...
3
votes
2answers
558 views

How to jQuery ajax with input field name=“array[]”?

I have several dynamically created hidden input fields. Most of which have a name formatted as "array[]" Question 1: How can I use jQuery .ajax() or .post() to get the values from every field named ...
3
votes
2answers
160 views

Good way to serialize a list? - Javascript/AJAX

just felt like asking this as there are always jewels popping up on stackoverflow :) What I have is the following list: list1 = [['command','arg1','arg2'], ['command2','arg1'], ... ] How would you ...
3
votes
1answer
158 views

Serializing and deserializing data - JavaScript

I need to perform a lot of serializing and de-serializing in an application. The data is POST parameters and Cookie headers. Post data example: ...
2
votes
1answer
39 views

jQuery validate: submitting form only when fields are validated

I'm using the code below to validate my form. The validation is going great but I have a problem when submitting the form. And the problem is: the form is submitted to the php file everytime the "Send ...
2
votes
4answers
107 views

Alternative to jQuery's serialize()?

I have a lot of inputs with the same name attribute. I know how to get them all as jQuery object! The console.log() prints-out something like this: [ <input type=​"checkbox" name=​"people" ...
2
votes
3answers
957 views

Get all Form values - working with jquery ajax in PHP

I'm using this jquery to serialize my form and pass it to a PHP script called write.php; $("form").submit(function(){ var_form_data = $(this).serialize(); $.ajax({ type: "POST", ...
2
votes
3answers
206 views

Returning two things in one HttpResponse

I am trying to implement paging across ajax calls. The page should not refresh when the user wants to see the next x num of results. Here is my problem. Returning the QuerySet is super simple. I just ...
2
votes
2answers
465 views

jQuery process form

This one is a really simple question (I hope), but as just leaning/getting to grips with jQuery I apologize in advance. If I have a form e.g. <form id="form"> <input type="text" name="abc" ...
2
votes
3answers
117 views

XML to JavaScript hashes/arrays on the client

Any client js libraries for turning XML into a JavaScript object? I'm specifically working with RSS and ATOM XML. I don't want to go from XML to JSON then eval(). I'd like to go from XML directly to ...
2
votes
3answers
2k views

custom serialization converters for a WCF service

We are currently using a .asmx web service method which serializes our object to Json to be returned to the client and consumed by MS Ajax code. For some members of the object, we use custom ...
1
vote
1answer
155 views

Why is there no serialize to JSON in jQuery? [closed]

Hi a couple of days ago I had to post a js object to the server via ajax and I discovered there was no way to convert an object to JSON using jQuery. So it's really a two part question: 1. Why is a ...
1
vote
5answers
327 views

Can abstract class be a parameter in a controller's action?

I have an Action function inside of a Controller, which is being called with AJAX. That Action is taking in 1 parameter. Client side, I construct a JSON object which should serialize into that 1 ...
1
vote
2answers
184 views

Why does this semicolon appear if I use jQuery serialize() on inputs with square brackets in the name?

I have the following HTML: <input type="checkbox" id="options_1" value="options_1" name="options[]"> <input type="checkbox" id="options_2" value="options_2" name="options[]"> ...
1
vote
3answers
532 views

Parsing POST data with ampersand

A bit of background: I'm using the jQuery UI sortable serialize method which produces something along the following: category[]=Value &amp; One&category[]=ValueTwo&category[]=ValueThree ...
1
vote
2answers
496 views

.serialize() returns empty dict. What do i do wrong?

What's wrong with this? .serialize() returns nothing. I've tried several ways to do this, but all end up with empty dictionary. form, input, #idofform, #idofinput, nothing happens... ...
1
vote
2answers
138 views

How to convert an object to the serialized syntax for data in jquery.ajax function?

I have an object that I want to send with my jquery.ajax function but I can't find anything that will convert it to the serialized format I need. $.ajax({ type: 'post', url: 'www.example.com', ...
1
vote
1answer
297 views

CompositeControl and XML Deserialization on design-time error

I get "Error rendering control" error that only happens when I place the control on the webform in desgin-mode, if I run the page the control is displayed correctly. The above statement is not ...
1
vote
1answer
264 views

Serialize unique form from page of many for AJAX. Works in FF/Safari, but IE serializes ALL forms on page

I have a page of similar items, each in their own form I want to update using Ajax. For each item, I append a counter onto the end of the form id, so each form has a unique id. I also store this ...
0
votes
1answer
16 views

Simple AJAX call to return data

So I'm trying to do a simple AJAX call(my first try at it), to return the highest value in a field of a MySQL table. I'm getting the error "Object of class DB_Result could not be converted to string", ...
0
votes
3answers
82 views

serialize() then post it into database?

I'm having trouble working this out for inserting input values into database. I have something like this $("form#profileName").submit(function(){ var updateName = $(this).serialize(); ...
0
votes
0answers
100 views

Ajax.Request Parameters Serialize(true) not working on IE9

I have a problem on a site. I the following code: <form id="AddNewProduct" action="" method="post"> <fieldset id="AddReleaseFieldset" runat="server" class="addrelease subform"> ...
0
votes
2answers
58 views

is serialized form string secure

I use full of ajax requests in my mini networking site . whenever i want to supply some input like the user inputted text along with some important ids , i put them in a form and use '.serialize' to ...
0
votes
3answers
359 views

Deserialize JSON array(or list) in C#

here is the basic code: public static string DeserializeNames() { jsonData = "{\"name\":[{\"last\":\"Smith\"},{\"last\":\"Doe\"}]}"; JavaScriptSerializer ser = new JavaScriptSerializer(); ...
0
votes
1answer
124 views

jQuery Serialize on an Array

I have a webpage with the following input: <input type='text' name='packagedims[]' value='1' id='packagedims' title='Package1' /> I'm using it in jQuery as so: var packagedims = ...
0
votes
1answer
92 views

jQuery .serialize not posting to PHP.. or is it the PHP?

Related to my question yesterday: My two radio buttons that will change prices on change: <form id="f-p" method="post" action="forms.php"> <label for="exkl">Exkl. ...
0
votes
4answers
192 views

How to serialise an object to json and send it to a web service?

How to serialise an object to json and send it to a web service? var object = something.... function BindJson() { $.ajax({ type: "POST", url: "NewPage.aspx/GetJson", ...
0
votes
1answer
126 views

jQuery serialize issue with php foreach

$("#doStatus").click(function() { var serialized = $("#formStatus").serialize() $.get("<?echo $site['url'];?>modules/yobilab/tuitting_core/classes/doStatusBox.php", serialized); ...
0
votes
2answers
133 views

.serialize contentEditable div?

I'm using (form).serialize to POST a form with ajax... Something like: $.post("/ajax/post_message_action.php", $(form).serialize(), function (data) { ... } The problem is that I want to use a ...
0
votes
2answers
88 views

how use serialize in jquery with my customize data?

i have this function: function save_grad_form_one(id,a,b) { $("#loading").ajaxStart(function(){$(this).show();}); $("#loading").ajaxStop(function(){$(this).hide();}); $.ajax({ ...
0
votes
0answers
122 views

MicrosoftAjax.js serialization of date time objects

I've had some problems when sending JSON objects to a WCF method using the MicrosoftAjax.js library. When the object being sent has a date property that is serialized to JSON it appears that the ...
0
votes
1answer
221 views

jquery cant serialize data from form loaded in via ajax

has been a long night am struggling here. I have a form which is loaded into a div via ajax the button on the form makes another ajax call serialising the data, but when i call serialise it does not ...
0
votes
1answer
325 views

jQuery post with serialize IE issue

var jqxhr = $.post(url, $("#saveShipAdrs").serialize(), function(response) { // set form values to view var fld; $('#editShipAdrs input[name*="Livraison"]').each(function(){ ...
0
votes
1answer
107 views

Serialization with jquery ajax

can anyone help me out , how to do serialization using jquery? i tried this script , its not working. But the demo they mentioned is working over there ...
0
votes
1answer
138 views

Get values from form printed with smarty foreach

My problem is next: I have a form where inputs, labels and some other tags are printed with smarty foreach. So i have a multiple tags with same name. I need to collect data from some of fields in ...
0
votes
0answers
162 views

ajax, jquery, serialize

function sendValues() { var str = $("#myForm").serialize(); $.ajax({ type: 'POST', data: str, cache: false, success: function(data){ ...
0
votes
3answers
426 views

How to serialize dictionary in django to render in Jquery [Level of question - Beginner]

The dictionary to serialize - form.errors e.g. view - form = PersonalForm(request.POST) # errors = serializing function which serializes form.errors data = errors #Is this the way to pass data? Not ...
0
votes
1answer
395 views

How to pass jQuery generated input boxes with Ajax to PHP for insertion into MySQL?

Even-though I have tried the workarounds proposed on similar solutions, it still gives me 'Array' on the receiving PHP. One thing I have to mention that is different from other postings that I've ...
0
votes
3answers
332 views

How to get the JSON-string value of a complex object?

I use jQuery to get jsonData from the server. I don't know what the data is. I would like to get the string value of the JSON object and write it in a textarea tag so I can debug. How? Please and ...
0
votes
1answer
365 views

Infinite loop when Json serializing a Collection (VB ASP.NET)

I am trying to use a Web Service to return Json for a Collection of Users from a Database Table. I'm only new to .NET (< 1 week experience), and I don't want to use the UpdatePanel for AJAX. I have ...
0
votes
1answer
145 views

can you pass a serialized c# class to json via jquery?

let's say i have a class: [Serializable] public sealed class MyFoo { public int ID { get; set; } public string Name { get; set; } } I want to pass data from my Webservice to the JQuery ajax ...
0
votes
2answers
371 views

Object serializable for AJAX, WCF and ViewState

consider the following class and struct public class Entity { public IdType Id {get;set;} public string Data {get;set;} } [TypeConverter(IdTypeConverter))] public struct IdType { ... any ...
0
votes
2answers
450 views

Serialize Dictionary with a string key and List[] value to JSON

How can I serialize a python Dictionary to JSON and pass back to javascript, which contains a string key, while the value is a List (i.e. []) if request.is_ajax() and request.method == 'GET': ...
0
votes
1answer
98 views

jQuery AJAX timing issue

In my backend I'm using jquery 1.4.1 and the newest UI 1.8rc1. I defined a couple of buttons that do things... one is create a certain type of page using serialize functions calling a php file and ...
0
votes
1answer
63 views

Jquery .serialize isn't including the FIRST SET at INDEX 0

My jquery looks like this: var as = $("input[name=as[]]").serialize(); var bs = $("input[name=bs[]]").serialize(); var cs = $("input[name=cs[]]").serialize(); but it's not serializing the first set ...
0
votes
1answer
255 views

prototype serialize returns function instead of serialized string

I have a script. In it is code. I have a page. In it is some stuff from db. There is an edit button. When pressed, a div pops up and is populated with form fields via ajaxrequest -ing an external php ...

1 2