我的表单中有一个datepicker
,它以 JSON 格式从 form.load 中获取值。日期选择器支持哪些值?
因为它不会绑定这个值:\/Date(1241215200000)\/
.
我已经有了 JSON 格式的转换功能,但我无法使用 aconvert
或renderer
config 配置该字段。
convertDate = function (value) {
if (value == null) return null;
return new Date(parseInt(value.replace("/Date(", ""), 10));
};