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