我想显示我的jqgrid的时间列中的小时,分钟,秒和毫秒但毫秒没有显示,同时修改毫秒字段显示错误的数据。
这是我用过的代码:
{
text: 'Time', filterable: false, datafield: 'Time', width: '120px',
cellsFormat: "HH:mm:ss.fff",
createfilterwidget: function (column, columnElement, logReportSearchGrid){
$(logReportSearchGrid).jqxDateTimeInput({
formatString: 'MM/dd/yyyy',
dropDownHorizontalAlignment: 'right'
});
}
}