本文介绍了SmartGWT - 以yyyy / MM / dd格式显示日期的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想有可能显示一个日期,可以手动输入日期。
为此,我使用属性 useTextField 设置为 true like:

I want to have the possibility to display a date with the possibility to enter the date manually.For this I've uset the attribute useTextField set to true like:

setAttribute("useTextField", true);

现在我希望日期的格式为yyyy / MM / dd。

Now I want the format of date to be yyyy/MM/dd.

我尝试过

setAttribute("displayFormat ", "TOJAPANSHORTDATE");
setAttribute("inputFormat ", "YMD");

但没有发生。

我需要使用属性。
我应该使用什么属性?还有什么价值?

I need to use attributes.What attribute should I use? And with what value?

请帮忙。
非常感谢你。

Please, need help.Thanks you a lot.

推荐答案

你可以尝试

.setDisplayFormat(DateDisplayFormat.TOJAPANSHORTDATE);

这篇关于SmartGWT - 以yyyy / MM / dd格式显示日期的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-31 10:30