0

"2/6/2013"在我们绑定到格式化程序后,服务器正在返回一个带有这种格式日期的字符串,它看起来像这样: "12/4/2007".

{ 
    name: 'DueDate', 
    index: 'DueDate', 
    width: 110, 
    align: 'center', 
    resizable: false, 
    formatter:'date', 
    formatoptions: { newformat: 'm/d/Y' }, 
    datefmt: 'm/d/Y' 
}

为什么?

4

1 回答 1

0

尝试在formatoptions.

IE;

formatoptions: { srcformat:'d/m/Y',newformat: 'm/d/Y' }, 

或者您可以使用此处描述的自定义格式化程序

于 2013-05-09T04:32:25.333 回答