Timer

From Documentation

Stop.png This documentation is for an older version of ZK. For the latest one, please click here.


A timer is an invisible component used to send the onTimer event to the server at a specified time or period. You can control a timer by using the start and stop methods.

10000000000000E50000003490E811F6.png

 
<window title="Timer demo" border="normal">
    <label id="now"/>
    <timer id="timer" delay="1000" repeats="true"
         onTimer="now.setValue(new Date().toString())"/>
    <separator bar="true"/>
    <button label="Stops timer" onClick="timer.stop()"/>
    <button label="Starts timer" onClick="timer.start()"/>
</window>



Last Update : 2022/01/19

Copyright © Potix Corporation. This article is licensed under GNU Free Documentation License.