SmartGWT - Display date in yyyy/MM/dd format

2019-08-01 04:17发布

问题:

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);

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

I've tryed with

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

but nothing happen.

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

Please, need help. Thanks you a lot.

回答1:

You can try

.setDisplayFormat(DateDisplayFormat.TOJAPANSHORTDATE);


标签: date smartgwt