I everyone i have a JSON Array that is construct like this
for (var i = 0; i < count; i++)
{
var record = myDataStore.getAt(i);
if (record.dirty){
submitRecords[currentIndex] = record.data;
//alert(submitRecords[currentIndex].ConversionDate);
currentIndex++;
}
}
The problem is that inside the record.data there are dates and when i tried to send it to my WCF service of course give me an error because it does not have the properly date format, an i was wondering is there someway to change specific properties of my JSON object with or without Ext