我正在我要设置日期字段的列标签内处理wijgrid。
我的数据来自JSON(日期在表格列中)但我的日期格式是 2012-07-24T14:03:24.000 + 0000我希望我的日期格式应该像2012-07-24这样。
我在列中尝试了dataType:“datetime”,但它没有显示它隐藏在列中(列显示为空)
这是我的代码:
$("#deviceloglist")
.wijgrid({
pageSize : 5,
allowPaging : true,
allowSort: true,
allowfilter:true,
columns: [ { headerText : "Created Date" ,dateFormat: 'd'
},{ headerText : "Details"}, { headerText : "CreatedBy"},
{ headerText : "LogType", visible:false}, { headerText : "LogData",visible:false}
],
答案 0 :(得分:0)
您只需使用子字符串即可找出字母“T”的位置。
这是一个测试样本:
var test = "2012-07-24T14:03:24.000+0000";
alert(test.substr(0,test.indexOf("T")));
.indexOf(“T”)返回10.然后我们用它将字符串从char 0剪切到10。