jQWidgets Forums
jQuery UI Widgets › Forums › Grid › wrong date data format sent to server while updating jqxgrid
This topic contains 1 reply, has 2 voices, and was last updated by Peter Stoev 12 years, 8 months ago.
-
Author
-
wrong date data format sent to server when update row event occurs. It goes to server like “01.01.0001 00:00:00”. Row date data at client before sent is(I saw it by alert) “Sat May 05 2012 00:00:00 GMT+0300 (GTB Daylight Time)”. Any advice?
The clientside code is:
var gridSource = { datatype: "json", datafields: [{ name: 'KargoId' }, { name: 'Ad' }, { name: 'Soyad' }, { name: 'YuklenmeTarihi', type: 'date' }, { name: 'Adet' }, { name: 'Fiyat'}], url: 'BindGrid', updaterow: function (rowid, rowdata) { if (selectedUrunId != undefined && selectedUrunId != -1) { rowdata.UrunId = selectedUrunId; selectedUrunId = -1; } alert(rowdata.YuklenmeTarihi); var data = $.param(rowdata); //alert(data); $.ajax({ dataType: 'json', url: 'UpdateEditGrid', data: data, success: function (data, status, xhr) { gridDataAdapter.dataBind(); /*if (data.Success == false) alert(JSON.stringify(data));*/ /*if (data.Success == true && gridDataAdapter != undefined) gridDataAdapter.dataBind();*/ }, error: function (xhr, status, error) { alert(JSON.stringify(xhr)); } }); } }; var gridDataAdapter = new $.jqx.dataAdapter(gridSource, { downloadComplete: function (data, status, xhr) { }, loadComplete: function (data) { }, loadError: function (xhr, status, error) { alert(JSON.stringify(xhr)); } }); // initialize jqxGrid $("#jqxgrid").jqxGrid( { width: 670, source: gridDataAdapter, editable: true, theme: theme, selectionmode: 'singlecell', columns: [ { text: '#', datafield: 'KargoId', width: 40 }, { text: 'Ad', columntype: 'textbox', datafield: 'Ad', width: 90 }, { text: 'Soyad', datafield: 'Soyad', columntype: 'textbox', width: 90 }, { text: 'YuklenmeTarihi', datafield: 'YuklenmeTarihi', columntype: 'datetimeinput', width: 90, cellsalign: 'right', cellsformat: 'd', validation: function (cell, value) { var year = value.getFullYear(); if (year >= 2013) { return { result: false, message: "Yükleme zamanı 1/1/2013 tarihinden önce olmalı!" }; } return true; } }, { text: 'Adet', datafield: 'Adet', width: 70, cellsalign: 'right', columntype: 'numberinput', validation: function (cell, value) { if (value < 1 || value > 15) { return { result: false, message: "Adet 1-15 aralığında olmalı!" }; } return true; }, initeditor: function (row, cellvalue, editor) { editor.jqxNumberInput({ decimalDigits: 0, digits: 3 }); } }, { text: 'Fiyat', datafield: 'Fiyat', width: 65, cellsalign: 'right', cellsformat: 'c2', columntype: 'numberinput', validation: function (cell, value) { if (value < 0 || value > 15) { return { result: false, message: "Fiyat 0-15 aralığında olmalı!" }; } return true; }, initeditor: function (row, cellvalue, editor) { editor.jqxNumberInput({ digits: 3 }); } } ] });
Hi serefbilge,
The jQuery’s param function does not serialize Date object. As a solution, you can format the Date before sending it.
Example:
updaterow: function (rowid, rowdata) { // synchronize with the server - send update command var obj = rowdata; obj.date = Date.UTC(obj.date.getUTCFullYear(), obj.date.getUTCMonth(), obj.date.getUTCDate()); var data = $.param(obj); }
In your server code, you will need to convert it to DateTime or other date format.
Best Regards,
Peter StoevjQWidgets Team
http://www.jqwidgets.com -
AuthorPosts
You must be logged in to reply to this topic.