这是我第一次使用jqGrid。表中根本没有显示日期。数据以json格式编码。在调试时,我发现正在获取的日期是unicode(不确定)格式,基本上是13位数字。 我尝试过使用srcformat作为'U'或'u'。但都不起作用。我尝试过创建一个自定义格式化程序但是返回一个未定义的日期。
例如,JSON值为“1380556800000”。另外,我想提一下java对象的类型为Timestamp。
如果你能指出我在这里做错了什么,那就太好了。 提前致谢
function searchSchePtn(){
var sParam = {
outPtnId : $('#outPtnId').val(),
floutScheCd : $('#scheCd').val(),
floutScheNm : $('#scheNm').val(),
schePtn : $('#schePtn').val(),
status : $('#status').val(),
};
var schePtnList = null;
SchePtnAccessor.getFloutSchePtnList(sParam, {
callback : function(value) {
schePtnList = JSON.parse(value);
},
async : false
});
$('#schePtnList').jqGrid('GridUnload');
$('#schePtnList').jqGrid(
{
data : schePtnList,
datatype : 'local',
height : 250,
rowNum : 10,
rowList : [ 10, 20, 30 ],
colNames : [ 'Schedule Id', lang.getMessage('出力パターン名称', 'Output Pattern Name'), 'Schedule Code', 'Schedule Name', 'Schedule Pattern', 'Start Date', 'Execution Time', 'Status'],
colModel : [ {
name : 'floutScheId',
index : 'floutScheId',
hidden : true,
},{
name : 'outPtnName',
index : 'outPtnName',
width : 150,
sorttype : "String"
}, {
name : 'floutScheCd',
index : 'floutScheCd',
width : 150,
sorttype : "String"
}, {
name : 'floutScheNm',
index : 'floutScheNm',
width : 150,
sorttype : "String"
}, {
name : 'schePtn',
index : 'schePtn',
width : 50,
sorttype : "String"
}, {
name : 'sDate',
index : 'sDate',
width : 100,
formatter: 'date',
formatoptions: {srcformat:'U', newformat:'d-M-y H:i'}
} , {
name : 'actTime',
index : 'actTime',
width : 50,
sorttype : "String"
}, {
name : 'status',
index : 'status',
width : 50,
sorttype : "String"
}],
pager : '#schePtnListPager',
viewrecords : true,
gridview : true,
});
};
答案 0 :(得分:1)
我认为这个问题之前已经得到了回答。不确定你是否有同样的问题,但试着看看这个.... jqgrid date formatting
<强>更新强>
name: 'myDate',
index: 'myDate',
align: 'left',
sortable: true,
formatter: 'date',
formatoptions:
{srcformat: 'u', newformat: 'd/m/Y H:i:s'},
width: 70,