我使用 -
格式化jqgrid列
formatoptions:{srcformat:'ISO8601Long',newformat:'H:i'},格式化程序:'日期'
我想在时间之前在停在中添加前缀字符串。
请帮忙...... 提前谢谢......
答案 0 :(得分:0)
您可以使用调用原始日期格式化程序的custom formatter并在之前添加所请求的字符串:
formatoptions: { srcformat: "ISO8601Long", newformat: "H:i" },
formatter: function (value, options) {
return "Stopped at " + $.fn.fmatter.call(this, "date", value, options);
}