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

最佳答案

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

工作example

09-25 22:28