Tagged Questions
0
votes
1answer
49 views
Input in tr>td>input is not processed with jquery serialize
i have found some solution to an problem I face under the last solution provided under this link: Create a HTML table where each TR is a FORM
Anyhow, here are some fragments from my code:
HTML:
...
-2
votes
0answers
26 views
Is it possible to save a jQuery form for other users to edit?
I am currently using the jQuery forms plugin with jQuery mobile, I was wondering if it's at all possible to save a form (.asp - which will send an email of the selections, I have this) but I wonder if ...
0
votes
1answer
91 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
1answer
55 views
$.post serialization for file uploads
This seems to work with my dynamically changing forms that don't require uploads.
<script src="http://code.jquery.com/jquery-latest.min.js"></script>
<script type="text/javascript" ...
0
votes
0answers
36 views
Dynamic Form Serialization Issues
I have a form that contains a menu system. In the menu system you select which type of form you want to dynamically load. [Ex. Upload Video, Embed Video, Upload Photo, Import Image, Upload Audio, ...
0
votes
2answers
49 views
JQuery string not parsing correctly in PHP
In a previous post, I asked about how to deserialize a JQuery string, and was told to use parse_str(). However, I didn't post my code until later. So, here is my JQuery string:
...
0
votes
1answer
67 views
jquery serialization and getting values with php
May be it would be an easy question but I did not manage it. Here is my checkboxes like this:
<input name="msg_id[]" type="checkbox" id="msg3" value="3" />
<input name="msg_id[]" ...
0
votes
2answers
29 views
How to properly deserialize a string from JQuery using PHP? [duplicate]
I was wondering, does anyone know how do I properly deserialize a string from a JQuery using PHP? The string that JQuery passes into my PHP file is this:
...
0
votes
0answers
36 views
JqueryUI can not serialized
I'm implementing a sortable list of images with jquery in a php application. I just can't get the .sortable('serialize') method to return more than an [object Object].
When I try with a few simple ...
0
votes
0answers
95 views
form.serialize () method is not detecting the checkboxes rendered by ajax response?
I have a jsp page having a html form which has 3 hidden fields, 1 select box and a div containing 10 checkboxes and a submit buttons.
There no action page has set to this form in action property of ...
2
votes
3answers
89 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
2answers
48 views
jquery .sortable() serialize method onload
I am using the sortable serialize that saves the order to a database, which woks fine when the list i am sorting changes (i.e. dragged). However I want to auto serialize the order of the items on page ...
0
votes
1answer
35 views
Jquery serialize with Data Tables makes duplicates
I have a jquery datatable which I'm populating with server side datas.To Data Tables columns are assigned events like (edit, delete). Than I choose one of the row to be edited like clicking on edit ...
1
vote
2answers
60 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
2answers
102 views
Sending parts of form using jQuery serialize() and AJAX
I'm trying to send parts of one form by AJAX using jQuery's serialize. The form has 16 textfields. I have 4 buttons. The button0 sends the textfields 0,1,2,3, and button1 sends the textfields 4,5,6,7, ...
-3
votes
1answer
31 views
working code of jquery ajax $.post $.get $.ajax load() [closed]
working(tested 100%) of Ajax Jquery codes;
$.post, $.get, $.ajax, load() with val() function and serialize() functions.
0
votes
1answer
55 views
Disabled fields not picked up by serializeArray
(Question updated to reflect real issue)
I just realized that serializeArray is not fetching content from disabled fields.
A set of (street) address fields are populated by selecting an item ...
0
votes
1answer
45 views
.getJson call not working with objects that use inheritence
first post... Normally I'm able to search and find answers to my problems, but this time I am not able to. I have an object that uses a bunch of other objects:
[DataContract]
public class CoolStuff
{
...
0
votes
3answers
55 views
How to hide appended input names when the value is empty
Hi all, I have a small script that appends a list of input values along with their names into a textarea. What I'd like to do is hide the field name when the value is 0 or empty.
Here's the script:
...
0
votes
2answers
38 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 ...
0
votes
3answers
67 views
How to remove empty input field from a form using jquery for using serialize?
$('#mybutton').click(function(){
var form = $(this).parents('form:first');
var values = form.serialize();
//do some ajax calls
})
Now I want to do something like this
$("#myForm ...
0
votes
1answer
63 views
How do you select what json info you serialize with jquery?
If my jquery serialization is posting the following:
...
0
votes
1answer
99 views
jquery/bootstrap form serialize doesn't work
I'vegot following ICanHaz form template:
<script id="outcomeFormTemplate" type="text/html">
<form id="xyz" class="form-horizontal well" data-async data-target="#outcomeFormDialog" ...
-3
votes
1answer
76 views
How do I get the correct json structure from serializing an object in jQuery?
How to i get the correct json structure from serializing an object in jquery?
my code looks like this:
<form id="myform">
<input name="Name[OrganizationName]" id="OrganizationName" />
...
0
votes
1answer
36 views
serialized string from ASP.NET to jquery
i need to pass image paths to jquery from asp.net using hidden field
i want to serialize paths like
"www.asd.com/asd.png ||| www.asd.com/asd2.png"
and reach them in jquery like
var pathStrings;
...
2
votes
1answer
200 views
Jquery Radio Button Submit Form
I have multiple forms on one page all are like this: The ID value changes but the options can be similar.
<form class="test"><td>4000</td>
<td align='center'><input ...
0
votes
1answer
248 views
hack for jQuery to serialize values of <input> and <select> elements that are NOT inside a form
I've been looking through a lot of posts on stackoverflow and elsewhere for this answer, but am still struggling to find something that will work with the boundaries of my application.
I am building ...
1
vote
1answer
144 views
Serialize PHP/JQuery
I have a working program but I just learned about the 'serialize' option in JQuery and PHP that I think can clean up my code. Problem is that after reading a few great posts on here im still not ...
0
votes
1answer
71 views
jQuery - Serialize Array of Inputs
I'm missing something in my code. I have a list of text boxes that are meant for percentage values, and there could be numerous inputs.
// loop through unknown inputs with different values
<input ...
0
votes
1answer
67 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
2answers
109 views
My jquery Ajax method is going in else part every time
My jQuery method -
jQuery("#upload_button").click(function(){
var exceldata = jQuery("#upload_button").serialize();
var url = "module/controller/contrlrmethod/exceldata/" + exceldata;
if( ...
0
votes
2answers
92 views
Not able to loop through array in JSON, jQuery
I've a form with input fields as follows:
<form "data-qustion_form"=true>
<input name="question[description]" value="quesd">
<input name="question[answers][0][description]" ...
0
votes
0answers
151 views
Using jQuery serialize with ajax posting some input fields as arrays
Hi I have the following HTML:
...
<td><input type="text" name="code[]" value="" /></td>
<td>
<select class="selectProductOrders" ...
2
votes
1answer
119 views
Using jQuery to send form data with array of form elements with the same name
I have this form:
...
<td><input type="text" name="code[]" value="" /></td>
<td>
<select class="selectProductOrders" ...
0
votes
1answer
63 views
I can't serialize form from the object
I use scroll-pagination as a plugin in my page, And I use form to pass value to url i'm fetching the result.
After loaded new form will dynamically add to my page,and I want to serialize the new form ...
0
votes
0answers
33 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
3answers
57 views
jQuery: Checking for disabled attribute and adding/removing it?
I select all input elements of a form like this:
var fields = $( form + " :input" ).not( "button" );
How do I check if any of these inputs has the disabled attribute set and remove it when present?
...
2
votes
1answer
149 views
how to, on submit form gives duplicate in the serialized string using jQuery and jQuery Mobile?
i have a simple page with a simple form:
<div data-role="page" id="main">
<div data-role="header">
<h1>Page Title</h1>
</div>
<div ...
0
votes
0answers
147 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
0answers
147 views
using jquery serialize/window.onbeforeunload to check for a dirty form and stop user from leaving is not working in browsers besides IE
I'm using the following code to warn users if they are leaving the form without saving. It works perfectly in IE but in Firefox, Chrome and Safari it gives me the warning every time regardless of ...
2
votes
2answers
135 views
jquery serialize and $.post and receiving incomplete array on serverside
the jquery :
$("#btnSaveForm").click(function(){
...
$.post('../optional/setup/processItemcn.php', $("#FormTemplate").serialize(), function(data) {
alert(data);
});
...
});
the php with form :
...
0
votes
3answers
53 views
Radio not serializing with serializeArray
index.php:
<form id = "regform" action = "registration.php" method = "POST">
<label id = "namelabel">Username: </label> <input type = "text" name = "username" class = ...
0
votes
2answers
65 views
Unable to append data to string using serializeArray() and array.push()
After following answers like this one, I'm trying to append data to a string using:
<input type='checkbox' name='a' />A
<input type='checkbox' name='b' checked='checked'/>B
<input ...
0
votes
3answers
150 views
jQuery serialize() not working
I have an HTML form that looks like this:
<form class="form-horizontal" id="create_user" method="POST" action="#" accept-charset="UTF-8">
<span>Username</span><input ...
0
votes
1answer
139 views
Use jQuery serializeObject to make array of multiple radio boxes
While i tried to get json data from html inputs i found this thread:
Convert form data to JS object with jQuery
The serializeObject function does most of the things I need, there is only one thing I ...
1
vote
0answers
79 views
jQuery Sortable implimentation with database
Hi guys needing a little help with jQuery Sortable. I am an absolute php newbie so any help would be greatly appreciated.
I have been trying to work on updating the database with the new order of ...
0
votes
1answer
335 views
Form serialize not working in Firefox
Form is dynamically loaded via ajax. After form is loaded I calling initialization of my small form plugin.
Serialize works only first time but if form has required fields errors second submit is ...
0
votes
1answer
111 views
jQuery serialize the form twice (caching serialize ?)
In this URL http://www.juju.runover.com.br/meus-dados, I have a form loaded dinamicaly in the "Bancos" section.
I put an alert to show me the data sent and when I change the "Selecionar banco" option ...
1
vote
3answers
76 views
Array Serialization Issue
I'm storing some information which has been serialized by using jQuery into a MySQL database :
$(function () {
$("#sortable").sortable({
stop: function (event, ui) {
...
0
votes
2answers
58 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 ...



