FormItem smartgwt在一定时刻后重置

时间:2015-01-20 09:46:42

标签: gwt smartgwt

当我编辑一个字段(例如textItem)而没有保存时​​,我让它在某个时刻自动重置。 我想知道我们在这次停用应用程序时所谓的(技术上)?

我正在使用smartgwt3.0,GWT 2.1.0。 操作系统IE9

1 个答案:

答案 0 :(得分:0)

您可以创建一个计时器。在run方法中,你可以做任何你需要的事情。

Timer timer = new Timer() {            
   @Override
   public void run() {
       textItem.clearValue();
   }
};
timer.scheduleRepeating(1000);  

请记住,间隔是以毫秒为单位。