SAPUI5元素的倒计时

时间:2016-05-20 08:25:00

标签: javascript jquery sapui5

我是SAPUI5的新手,希望有人能帮我解决问题。

我想在ObjectStatus XML中创建一个倒计时元素。

<ObjectStatus id="myTime" title="Time runs of in" text="{timeFromModel}"    state="Success" />

我不知道如何开始。在jQuery中我会这样做:

setInterval( function(){
  var currentTime = new Date();

  // Get time from oModel, calculate the time difference

   $('myTime').val(newDifference);

}, 10000);

1 个答案:

答案 0 :(得分:2)

使用setText sap.m.ObjectStatus控件动态设置值。

工作example