I have this piece of jquery in my dialog:
$('#newAdres').click(function(){
$('#fieldset-adres').css('display', 'block');
$('#fieldset-adres').dialog({
zindex: '5000',
buttons:{
'Adres Opslaan': function() {
var adr_street = $('#adr_street').val();
var adr_houseno = $('#adr_houseno').val();
var adr_housenoadd = $('#adr_housenoadd').val();
var adr_postcode = $('#adr_postcode').val();
var adr_city = $('#adr_city').val();
var adr_type = $('#adr_type').val();
var cnt_id = $('#cnt_id').val();
var dataString = 'adr_street/' +adr_street +'/adr_houseno/'
+adr_houseno +'/adr_housenoadd/'+adr_housenoadd
+'/adr_postcode/'+ adr_postcode +'/adr_city/'+
adr_city + '/adr_type/'+adr_type+ '/cnt_id/'
+cnt_id;
$.ajax({
url: 'save-adres',
type: "post",
data: dataString,
success: function(){
alert('het is gelukt');
}
});
console.log(dataString);
$(this).dialog("close");
},
'Annuleren': function(){
$(this).dialog("close");
}
}
});
return false;
});
Now the first time i submit my forms all values in the dataString are empty. Only after the second submit the values are filled. Any idea's?
I prefere to keep my dataString like Variable1\value1\variable2\value2 and so on because thats how my application expects it to be.
Edit
By the first submit just the last value is set. And by the second submit all variables are set.
So by the first one it is
variable1//variable2//variable3/value3
and by the second request it is
variable1/value1/variable2/value2/variable3/value3
variable1//variable2//variable3//...? – Groovetrain Apr 22 '11 at 14:14