如何格式化struts-dojo datetimepicker以显示24小时而不是12小时?

时间:2014-04-02 06:17:24

标签: javascript jsp struts2 dojo datetimepicker

这是我的datetimepicker

<sx:datetimepicker id="strtTP" type="time" name="fromTime"  />

我尝试在onload javascript中设置格式。但没有工作。

var strtTime = dojo.widget.byId('strtTP');

strtTime.Format = DateTimePickerFormat.Custom;

strtTime.CustomFormat = "HH:mm tt";

有人可以帮助我以24小时格式显示datetimepicker吗?

1 个答案:

答案 0 :(得分:0)

根据the documentation,它应该是

<sx:datetimepicker id = "strtTP" 
                 type = "time" 
                 name = "fromTime"  
        displayFormat = "HH:mm" />