0

これが jqgrid に関連しているのか、それとも webservice/postback/JSON の問題なのかはわかりませんが、できるだけ多くの情報を提供しようとします。

DateTime フィールドを使用して jqgrid のモーダル ポップアップを投稿しています。

ブラウザからポストバックすると、次のデータが送信されます (Firebug で見られるように)。

InStock Yes
Name    Desktop Computer
Note    note
Ship    4
ShipDate    05-11-2013
id  1
oper    edit



[WebMethod]
[ScriptMethod(ResponseFormat = ResponseFormat.Json)]
public string UpdateOrder(DateTime ShipDate, string Name, Stock InStock,Ship Ship, string Note,int id)
{
    return "";
}

jqgrid の colModel は次のようになります。

colModel:[
    {name:'Id',index:'Id', width:60, sorttype:"int", editable: false},
    {name:'ShipDate',index:'ShipDate',width:90, editable:true, sorttype:"date",unformat: pickDate},
    {name:'Name',index:'Name', width:150,editable: true,editoptions:{size:"20",maxlength:"30"}},
    {name:'InStock',index:'InStock', width:70, editable: true,edittype:"checkbox",editoptions: {value:"Yes:No"},unformat: aceSwitch},
    {name:'Ship',index:'Ship', width:90, editable: true,edittype:"select",editoptions:{value:"4:FedEx;1:InTime;2:TNT;3:ARAMEX"}},
    {name:'Note',index:'Note', width:150, sortable:false,editable: true,edittype:"textarea", editoptions:{rows:"2",cols:"10"}} 
], 

そしてpickDateは次のようになります

function pickDate( cellvalue, options, cell ) {
    setTimeout(function(){
        $(cell) .find('input[type=text]')
                .datepicker({format:'dd-mm-yyyy' , autoclose:true}); 
    }, 0);
}

また、編集フォームのスタイルは次のとおりです(編集フォームが表示された場合)

function style_edit_form(form) {
    //enable datepicker on "sdate" field and switches for "stock" field
    form.find('input[name=ShipDate]').datepicker({format:'dd-mm-yyyy' , autoclose:true})
        .end().find('input[name=stock]')
                .addClass('ace ace-switch ace-switch-5').wrap('<label class="inline" />').after('<span class="lbl"></span>');

ただし、データがサーバー (asmx サービス) で受信されると、日時 (ShipDate) は「11/05/2013 00:00:00」に変更されますが、クライアントから送信された出荷日は 05-11-2013 (これは正しいです) )。何が起こっているのか分かりますか?

4

1 に答える 1

1

For datepicker you are using 'dd-mm-yyyy' format but on server side it converting to different format according to culture installed i.e. 'mm/dd/yyyy hh:mm:ss' with the time. If you need the same format what you are passing from jquery you need to parse the date on server side in specified format.

DateTime time = Convert.ToDateTime("11/05/2013 00:00:00"); 
Console.WriteLine(time); //Default format 
string format = "d/M/yyyy";    // Use this format
Console.WriteLine(time.ToString(format));
于 2013-10-28T10:25:15.887 に答える