日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

在SAP WebClient UI里显示倒数计时的UI

發布時間:2023/12/19 编程问答 42 豆豆
生活随笔 收集整理的這篇文章主要介紹了 在SAP WebClient UI里显示倒数计时的UI 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

First let’s have a look at what is achieved: Once you click work center “Jerry count down”, the count down is displayed with a small animation.

The steps to build this application are almost the same as Step by step to create Bar Chart in Webclient UI.

(1) Create a new WebUI component with a view main.htm:

Paste the following source code for the created view:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head><script src="count/jquery.lwtCountdown-1.0.js"></script><link rel="Stylesheet" type="text/css" href="count/main.css"></link><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>Countdown demo</title> </head> <body><div id="container"><h1>Jerry's count down demo</h1><h2 class="subtitle">Time left for year 2017</h2><div id="countdown_dashboard"><div class="dash weeks_dash"><span class="dash_title">weeks</span><div class="digit">0</div><div class="digit">0</div></div><div class="dash days_dash"><span class="dash_title">days</span><div class="digit">0</div><div class="digit">0</div></div><div class="dash hours_dash"><span class="dash_title">hours</span><div class="digit">0</div><div class="digit">0</div></div><div class="dash minutes_dash"><span class="dash_title">minutes</span><div class="digit">0</div><div class="digit">0</div></div><div class="dash seconds_dash"><span class="dash_title">seconds</span><div class="digit">0</div><div class="digit">0</div></div></div><script language="javascript" type="text/javascript">jQuery(document).ready(function() {$('#countdown_dashboard').countDown({targetDate: {'day': 31,'month': 11,'year': 2017,'hour': 23,'min': 59,'sec': 59}});});</script></div> </body> </html>

As you see I hard code the last second of year 2017 as the time to count down here, feel free to replace with your own date and time.

(2) Go to tcode SE80, tab MIME Repository, create a new folder named count and import these nine files.

(3) Create a new work center and put the ui component into it.

Please find step by step about how to achieve it from this wiki page How to add an custom UI component into a new work center.

要獲取更多Jerry的原創文章,請關注公眾號"汪子熙":

總結

以上是生活随笔為你收集整理的在SAP WebClient UI里显示倒数计时的UI的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。