我正在使用 smartGwt6 和TimeItem
TimeItem callExpectedAt = new TimeItem("callExpectedAt", "Expected At");
callExpectedAt.setWidth("*");
callExpectedAt.setVisible(Boolean.FALSE);
callExpectedAt.setTimeFormatter(TimeDisplayFormat.TOSHORT24HOURTIME);
格式在UI中正确显示。
但是当我通过我的RestDataSource提交表单时,值将为
callExpectedAt 04:04:00.000
秒和毫秒。
我需要将其格式化为 HH:mm 格式。